GitHub social link

This commit is contained in:
Tom Heaton
2024-06-27 19:41:34 +01:00
parent 87387b2b4c
commit ccb80c16b8
2 changed files with 7 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ import {
SocialMediaWrap,
WebsiteRights,
} from "@/components/Footer/FooterElements";
import { FaLinkedin } from "react-icons/fa";
import { FaGithub, FaLinkedin } from "react-icons/fa";
import { FaSquareXTwitter } from "react-icons/fa6";
import { animateScroll as scroll } from "react-scroll";
@@ -30,6 +30,11 @@ const socials = [
icon: FaLinkedin,
alt: "LinkedIn",
},
{
href: "https://github.com/udlbook/udlbook",
icon: FaGithub,
alt: "GitHub",
},
];
export default function Footer() {