Skip to content

Commit

Permalink
Merge pull request #53 from acm-ucr/kevin/footer
Browse files Browse the repository at this point in the history
kevin/footer
  • Loading branch information
menthy-wu authored Nov 4, 2023
2 parents 54f28d9 + ce19910 commit 46b641c
Showing 1 changed file with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion src/components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
import whiteLogo from "../../public/assets/whiteLogo.svg";
import Image from "next/image";
import Link from "next/link";
import { ICONS } from "@/data/icons";
import { LINKS } from "@/data/links";

const Footer = () => {
return <div>Footer</div>;
return (
<div className="w-full bg-ewb-blue-200 border-t-[20px] border-t-ewb-green pt-32 flex justify-between">
<div className="flex items-end m-3 gap-3 text-white font-bold text-xl w-1/2">
<Image src={whiteLogo} alt="EWB Logo" />
<p>EWB at UCR</p>
</div>

<div className="text-right text-white text-sm flex flex-col m-0 p-0 mx-4 w-1/2">
<div className="flex flex-row ml-20 self-end">
{LINKS.map((social, index) => (
<Link
key={index}
href={social.link}
className="no-underline text-white hover:text-ewb-white mx-1 flex flex-col items-center hover:-translate-y-0.5 duration-300"
>
<icons className="text-2xl">{ICONS[social.text]}</icons>
</Link>
))}
</div>
<div className="py-2">
<div>900 University Ave</div>
<div>Riverside, CA 92521</div>
<div>United States</div>
<div>[email protected]</div>
<div>619-395-3534</div>
</div>
</div>
</div>
);
};

export default Footer;

0 comments on commit 46b641c

Please sign in to comment.