Merge pull request #206 from tomheaton/github-icon

website: Add GitHub social link
This commit is contained in:
udlbook
2024-07-02 14:23:00 -04:00
committed by GitHub
3 changed files with 8 additions and 2 deletions

View File

@@ -128,6 +128,7 @@ export const SocialIcons = styled.div`
export const SocialIconLink = styled.a`
color: #fff;
font-size: 24px;
margin-right: 8px;
`;
export const FooterImgWrap = styled.div`

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() {

View File

@@ -1,4 +1,4 @@
import App from "@/App.jsx";
import App from "@/App";
import "@/styles/globals.css";
import React from "react";
import ReactDOM from "react-dom/client";