Skip to content
This repository has been archived by the owner on Jan 25, 2025. It is now read-only.

Commit

Permalink
feat: add discord contact to footer
Browse files Browse the repository at this point in the history
  • Loading branch information
jbj338033 committed Jan 16, 2025
1 parent 81ec401 commit e9478e4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/home/Footer/index.tsx
Original file line number Diff line number Diff line change
@@ -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 {
Expand All @@ -25,6 +25,11 @@ const CONTACT_LINKS: readonly ContactLink[] = [
href: "mailto:[email protected]",
label: "Email",
},
{
icon: BsDiscord,
href: "discord://~/users/jjjmo",
label: "Discord",
},
] as const;

const LinkItem = memo(({ link }: { link: ContactLink }) => {
Expand Down

0 comments on commit e9478e4

Please sign in to comment.