generated from acm-ucr/acm-ucr-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from acm-ucr/kevin/footer
kevin/footer
- Loading branch information
Showing
1 changed file
with
35 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |