-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prizes, about resp, image pointer-events
- Loading branch information
1 parent
bec93cd
commit dd5532b
Showing
11 changed files
with
113 additions
and
97 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
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
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 |
---|---|---|
|
@@ -6,11 +6,21 @@ import MECLogo from "@/assets/logos/[email protected]"; | |
import ExcelLogo from "@/assets/logos/[email protected]"; | ||
|
||
import excel from "@/assets/Footer/excel.svg"; | ||
import { FaInstagram, FaFacebookF, FaLinkedinIn } from "react-icons/fa"; | ||
import { FaXTwitter } from "react-icons/fa6"; | ||
import { | ||
FaInstagram, | ||
FaFacebookF, | ||
FaLinkedinIn, | ||
FaMapMarkerAlt, | ||
} from "react-icons/fa"; | ||
import {FaXTwitter} from "react-icons/fa6"; | ||
|
||
const Footer = () => { | ||
const FooterSocials = [ | ||
{ | ||
item: "Instagram", | ||
link: "https://www.instagram.com/excelmec", | ||
icon: FaInstagram, | ||
}, | ||
{ | ||
item: "Twitter", | ||
link: "https://x.com/excelmec", | ||
|
@@ -21,24 +31,24 @@ const Footer = () => { | |
link: "https://www.facebook.com/excelmec", | ||
icon: FaFacebookF, | ||
}, | ||
{ | ||
item: "Instagram", | ||
link: "https://www.instagram.com/excelmec", | ||
icon: FaInstagram, | ||
}, | ||
{ | ||
item: "LinkedIn", | ||
link: "https://www.linkedin.com/company/excelmec", | ||
icon: FaLinkedinIn, | ||
}, | ||
{ | ||
item: "GMap", | ||
link: "https://maps.app.goo.gl/PycGaWgidy8eDQsx9", | ||
icon: FaMapMarkerAlt, | ||
}, | ||
]; | ||
return ( | ||
<footer className="max-md:min-h-dvh container relative z-10 flex flex-col items-center justify-between pt-32 px-6 pb-6 m-auto mt-[80px] sm:p-10"> | ||
<div className="flex flex-col items-center gap-2rem mb-[72px] md:mt-[150px] mt-[15vh] z-10"> | ||
<Image | ||
src={excel} | ||
alt="excellogo" | ||
className="skeleton" | ||
className="skeleton pointer-events-none" | ||
data-aos="fade-up" | ||
></Image> | ||
<div className="mt-3 text-center"> | ||
|
@@ -66,7 +76,7 @@ const Footer = () => { | |
<Image | ||
src={ExcelLogo} | ||
alt="ExcelLogo" | ||
className="h-[64px] w-fit cursor-pointer max-md:h-[50px]" | ||
className="h-[64px] pointer-events-none w-fit cursor-pointer max-md:h-[50px]" | ||
onClick={() => { | ||
window.open("https://excelmec.org", "_blank"); | ||
}} | ||
|
@@ -86,7 +96,7 @@ const Footer = () => { | |
<Image | ||
src={MECLogo} | ||
alt="mec" | ||
className="h-[62px] max-md:scale-90 w-fit cursor-pointer max-md:h-[64px]" | ||
className="h-[62px] pointer-events-none max-md:scale-90 w-fit cursor-pointer max-md:h-[64px]" | ||
onClick={() => { | ||
window.open("https://www.mec.ac.in", "_blank"); | ||
}} | ||
|
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
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
Oops, something went wrong.