Browse Source

add discord link to footer

AykutSarac 2 years ago
parent
commit
f8e945a703
1 changed files with 10 additions and 1 deletions
  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 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 styled from "styled-components";
 import pkg from "../../../package.json";
 import pkg from "../../../package.json";
 
 
@@ -79,6 +79,15 @@ export const Footer = () => (
       >
       >
         <FaTwitter size={26} />
         <FaTwitter size={26} />
       </StyledNavLink>
       </StyledNavLink>
+
+      <StyledNavLink
+        href="https://discord.gg/yVyTtCRueq"
+        rel="noreferrer"
+        target="_blank"
+        aria-label="discord"
+      >
+        <FaDiscord size={26} />
+      </StyledNavLink>
     </StyledIconLinks>
     </StyledIconLinks>
   </StyledFooter>
   </StyledFooter>
 );
 );