소스 검색

add discord link to footer

AykutSarac 2 년 전
부모
커밋
f8e945a703
1개의 변경된 파일10개의 추가작업 그리고 1개의 파일을 삭제
  1. 10 1
      src/components/Footer/index.tsx

+ 10 - 1
src/components/Footer/index.tsx

@@ -1,5 +1,5 @@
 import Link from "next/link";
-import { FaGithub, FaLinkedin, FaTwitter } from "react-icons/fa";
+import { FaDiscord, FaGithub, FaLinkedin, FaTwitter } from "react-icons/fa";
 import styled from "styled-components";
 import pkg from "../../../package.json";
 
@@ -79,6 +79,15 @@ export const Footer = () => (
       >
         <FaTwitter size={26} />
       </StyledNavLink>
+
+      <StyledNavLink
+        href="https://discord.gg/yVyTtCRueq"
+        rel="noreferrer"
+        target="_blank"
+        aria-label="discord"
+      >
+        <FaDiscord size={26} />
+      </StyledNavLink>
     </StyledIconLinks>
   </StyledFooter>
 );