diff --git a/src/components/footer/Footer.tsx b/src/components/footer/Footer.tsx index 0d33d247..0d0475d0 100644 --- a/src/components/footer/Footer.tsx +++ b/src/components/footer/Footer.tsx @@ -1,3 +1,4 @@ +import clsx from 'clsx' import type { FC, ReactNode } from 'react' import { ArrowUpRightIcon, HeartIcon } from '@heroicons/react/24/solid' import Link from 'next/link' @@ -5,8 +6,11 @@ import Link from 'next/link' import CapitalizedTitle from '../text/CapitalizedTitle' import InstagramIcon from '../icon/InstagramIcon' import FacebookIcon from '../icon/FacebookIcon' -import TwitterIcon from '../icon/TwitterIcon' +import XIcon from '../icon/XIcon' import GitHubIcon from '../icon/GitHubIcon' +import MainIcon from '../icon/MailIcon' +import LinkedInIcon from '../icon/LinkedIn' +import ThreadsIcon from '../icon/ThreadsIcon' interface LinkSubsectionProps { title: string @@ -16,11 +20,18 @@ interface LinkSubsectionProps { }[] } +interface LinkCondensedListProps { + links: { + href: string + socialType: SocialType + }[] +} + const LinkSubsection = ({ title, links }: LinkSubsectionProps) => { return ( -
+ {text} +
+ ) +} + +const FooterExternalLink: FC<{ org: string }> = ({ org }) => { + return ( + + {org == 'secs' ? 'SECS' : 'Hack4Impact UIUC'}{' '} +