-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
363a497
commit 843b3b2
Showing
4 changed files
with
19 additions
and
16 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
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,6 @@ | ||
import React from "react"; | ||
import { BsInstagram, BsLinkedin, BsDiscord } from "react-icons/bs"; | ||
import links from "@/lib/data/links.json"; | ||
|
||
export const LandingFooter: React.FC = () => { | ||
return ( | ||
|
@@ -9,24 +10,22 @@ export const LandingFooter: React.FC = () => { | |
<h2 className="m-4 mt-14 text-center text-xxl font-medium text-[#B479FF] [text-shadow:_0_0_10px_#FFD8FD] md:text-[5rem]"> | ||
Contact Us | ||
</h2> | ||
<p className="font-medium">[email protected]</p> | ||
<p className="font-medium">{links.email}</p> | ||
<div className="mt-4 flex items-center justify-center gap-4 text-[#9A76FF]"> | ||
<a | ||
target="_blank" | ||
href="https://www.linkedin.com/company/fullyhacks/"> | ||
<a target="_blank" href={links.linkedin}> | ||
<BsLinkedin className="h-12 w-12 md:h-16 md:w-16" /> | ||
</a> | ||
<a target="_blank" href="https://discord.gg/3NvZKuQxJY"> | ||
<a target="_blank" href={links.discord}> | ||
<BsDiscord className="h-12 w-12 md:h-16 md:w-16" /> | ||
</a> | ||
<a target="_blank" href="https://acmcsuf.com/"> | ||
<a target="_blank" href={links.acmcsuf}> | ||
<img | ||
className="h-12 w-12 md:h-16 md:w-16" | ||
src="/assets/acm_logo.svg" | ||
alt="ACM Logo" | ||
/> | ||
</a> | ||
<a target="_blank" href="https://www.instagram.com/fullyhacks/"> | ||
<a target="_blank" href={links.instagram}> | ||
<BsInstagram className="h-8 w-8 md:h-12 md:w-12" /> | ||
</a> | ||
</div> | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"discord": "https://discord.gg/XKNZxHEnJj", | ||
"linkedin": "https://www.linkedin.com/company/fullyhacks/", | ||
"instagram": "https://www.instagram.com/fullyhacks/", | ||
"acmcsuf": "https://acmcsuf.com/", | ||
"email": "[email protected]" | ||
} |