diff --git a/src/components/home/Footer/index.tsx b/src/components/home/Footer/index.tsx index e1a5725..71b1e83 100644 --- a/src/components/home/Footer/index.tsx +++ b/src/components/home/Footer/index.tsx @@ -1,6 +1,6 @@ import { memo } from "react"; import * as S from "./style"; -import { BsGithub, BsInstagram, BsEnvelope } from "react-icons/bs"; +import { BsGithub, BsInstagram, BsEnvelope, BsDiscord } from "react-icons/bs"; import { IconType } from "react-icons"; interface ContactLink { @@ -25,6 +25,11 @@ const CONTACT_LINKS: readonly ContactLink[] = [ href: "mailto:jbj338033@gmail.com", label: "Email", }, + { + icon: BsDiscord, + href: "discord://~/users/jjjmo", + label: "Discord", + }, ] as const; const LinkItem = memo(({ link }: { link: ContactLink }) => {