Skip to content

Commit

Permalink
feat: footer completed
Browse files Browse the repository at this point in the history
  • Loading branch information
a2ys committed Aug 10, 2024
1 parent 555ffcb commit 3f13d52
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 16 deletions.
Binary file modified public/compsoc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/logo.jpg
Binary file not shown.
Binary file removed public/logo2.png
Binary file not shown.
Binary file removed public/paradox1.jpg
Binary file not shown.
Binary file removed public/two.png
Binary file not shown.
11 changes: 5 additions & 6 deletions src/components/footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const Footer = () => {
<div className="flex flex-col md:flex-row lg:flex-row justify-center">
{/* IEEE logo */}
<div className="flex items-center justify-center basis-1/3">
<Image src="/logo.jpg" alt="logo2" width={280} height={80} />
<Image src="/compsoc.png" alt="logo2" width={280} height={80} />
</div>

{/* Menu */}
Expand All @@ -41,8 +41,8 @@ const Footer = () => {
</h3>
<ul className="space-y-2 text-center md:text-left">
<TextButton href="#about">About</TextButton>
<TextButton href="#team">Our Team</TextButton>
<TextButton href="#events">Events</TextButton>
<TextButton href="https://ieeecsvitc.com/">Team</TextButton>
<TextButton href="#events">Event</TextButton>
<TextButton href="#sponsors">Sponsors</TextButton>
<TextButton href="#faq">FAQs</TextButton>
</ul>
Expand All @@ -57,12 +57,11 @@ const Footer = () => {
</div>
</h3>
<p className="text-center">
Kelambakkam - Vandallur
Kelambakkam - Vandalur Rd
<br />
Rd, Rajan Nagar, Chennai,
Rajan Nagar, Chennai
<br />
Tamil Nadu 600127
<br />
</p>
</div>

Expand Down
25 changes: 15 additions & 10 deletions src/components/footer/SocialsGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,24 @@ import {
faDiscord,
faGithub,
faYoutube,
faMedium,
faDev,
} from "@fortawesome/free-brands-svg-icons";
import Link from "next/link";

const socialMediaLinks = [
{ href: "https://linkedin.com", icon: faLinkedin },
{ href: "https://twitter.com", icon: faTwitter },
{ href: "https://instagram.com", icon: faInstagram },
{ href: "https://telegram.com", icon: faTelegram },
{ href: "https://discord.com", icon: faDiscord },
{ href: "https://github.com", icon: faGithub },
{ href: "https://youtube.com", icon: faYoutube },
{ href: "https://medium.com", icon: faMedium },
{
href: "https://www.linkedin.com/company/ieee-computer-society-vit-chennai",
icon: faLinkedin,
},
{ href: "https://twitter.com/ieeecsvit", icon: faTwitter },
{ href: "https://instagram.com/compsoc.vitcc/", icon: faInstagram },
{ href: "https://t.me/IEEE_CS_VIT_Chennai", icon: faTelegram },
{ href: "https://discord.gg/6vkY3kcZnE", icon: faDiscord },
{ href: "https://github.com/ComputerSocietyVITC", icon: faGithub },
{
href: "https://www.youtube.com/channel/UCOgwDinZGau4rwv3swAe-nQ",
icon: faYoutube,
},
{ href: "https://dev.to/ieeecsvitc", icon: faDev },
];

const SocialMediaGrid: React.FC = () => {
Expand Down

0 comments on commit 3f13d52

Please sign in to comment.