Merge pull request #206 from tomheaton/github-icon
website: Add GitHub social link
This commit is contained in:
@@ -128,6 +128,7 @@ export const SocialIcons = styled.div`
|
|||||||
export const SocialIconLink = styled.a`
|
export const SocialIconLink = styled.a`
|
||||||
color: #fff;
|
color: #fff;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
|
margin-right: 8px;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
export const FooterImgWrap = styled.div`
|
export const FooterImgWrap = styled.div`
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import {
|
|||||||
SocialMediaWrap,
|
SocialMediaWrap,
|
||||||
WebsiteRights,
|
WebsiteRights,
|
||||||
} from "@/components/Footer/FooterElements";
|
} from "@/components/Footer/FooterElements";
|
||||||
import { FaLinkedin } from "react-icons/fa";
|
import { FaGithub, FaLinkedin } from "react-icons/fa";
|
||||||
import { FaSquareXTwitter } from "react-icons/fa6";
|
import { FaSquareXTwitter } from "react-icons/fa6";
|
||||||
import { animateScroll as scroll } from "react-scroll";
|
import { animateScroll as scroll } from "react-scroll";
|
||||||
|
|
||||||
@@ -30,6 +30,11 @@ const socials = [
|
|||||||
icon: FaLinkedin,
|
icon: FaLinkedin,
|
||||||
alt: "LinkedIn",
|
alt: "LinkedIn",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
href: "https://github.com/udlbook/udlbook",
|
||||||
|
icon: FaGithub,
|
||||||
|
alt: "GitHub",
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export default function Footer() {
|
export default function Footer() {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import App from "@/App.jsx";
|
import App from "@/App";
|
||||||
import "@/styles/globals.css";
|
import "@/styles/globals.css";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import ReactDOM from "react-dom/client";
|
import ReactDOM from "react-dom/client";
|
||||||
|
|||||||
Reference in New Issue
Block a user