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 #16 from acm-ucr/kelly/footer
created footer
- Loading branch information
Showing
1 changed file
with
59 additions
and
2 deletions.
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,7 +1,64 @@ | ||
import React from "react"; | ||
import logo from "@/public/assets/FooterLogo.svg"; | ||
import Image from "next/image"; | ||
import Link from "next/link"; | ||
|
||
import { | ||
FaInstagram, | ||
FaDiscord, | ||
FaYoutube, | ||
FaSlack, | ||
FaEnvelope, | ||
FaMediumM, | ||
} from "react-icons/fa"; | ||
|
||
const Footer = () => { | ||
return <div>Footer</div>; | ||
return ( | ||
<div className="grid grid-cols-2 gap-8 text-white bg-black w-full pt-24 pb-4"> | ||
<div className="flex justify-start "> | ||
<Image src={logo} /> | ||
</div> | ||
<div className="grid grid-cols-3 divide-x-4 divide-white justify-center items-center "> | ||
<div className="font-montserrat h-5/6 grid col-span-2 justify-center items-center "> | ||
<div className="text-xl font-semibold flex justify-end"> | ||
contact us! | ||
</div> | ||
<div className="text-xl font-semibold flex justify-end"> | ||
Winston Chung Hall, 446 N Campus Dr, <br /> Riverside, CA 92507 | ||
</div> | ||
<div className="text-xl font-semibold flex justify-end"> | ||
714-749-5576 | ||
</div> | ||
</div> | ||
<div className="grid grid-cols-2 text-5xl text-white h-5/6 hover:curson-pointer "> | ||
<div className="flex justify-between flex-col items-center"> | ||
<Link | ||
className="text-white " | ||
href="https://github.com/acm-ucr/hsp-website/pull/16/files" | ||
> | ||
<FaInstagram /> | ||
</Link> | ||
<Link className="text-white" href="discord-link"> | ||
<FaDiscord /> | ||
</Link> | ||
<Link className="text-white" href="youtube-link"> | ||
<FaYoutube /> | ||
</Link> | ||
</div> | ||
<div className="flex justify-between flex-col items-start"> | ||
<Link className="text-white" href="slack-link"> | ||
<FaSlack /> | ||
</Link> | ||
<Link className="text-white" href="email-link"> | ||
<FaEnvelope /> | ||
</Link> | ||
<Link className="text-white" href="medium-link"> | ||
<FaMediumM /> | ||
</Link> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Footer; |