Skip to content

Commit

Permalink
GitHub social link
Browse files Browse the repository at this point in the history
  • Loading branch information
tomheaton committed Jun 27, 2024
1 parent 87387b2 commit ccb80c1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/Footer/FooterElements.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
7 changes: 6 additions & 1 deletion src/components/Footer/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand All @@ -30,6 +30,11 @@ const socials = [
icon: FaLinkedin,
alt: "LinkedIn",
},
{
href: "https://github.com/udlbook/udlbook",
icon: FaGithub,
alt: "GitHub",
},
];

export default function Footer() {
Expand Down

0 comments on commit ccb80c1

Please sign in to comment.