diff --git a/frontend/src/components/footer/Footer.tsx b/frontend/src/components/footer/Footer.tsx index 1a0fb04a..81b8852c 100644 --- a/frontend/src/components/footer/Footer.tsx +++ b/frontend/src/components/footer/Footer.tsx @@ -1,6 +1,7 @@ import { FaDiscord, FaGithub, FaLinkedinIn } from "react-icons/fa"; -import { Link, useLocation } from "react-router-dom"; +import { Link, useLocation, useNavigate } from "react-router-dom"; +import smallLogo from "assets/small-logo.png"; import { DiscordPrimaryColor, GithubPrimaryColor, @@ -10,6 +11,7 @@ import { import SocialLink from "./SocialLink"; const Footer = () => { + const navigate = useNavigate(); const location = useLocation(); const { pathname } = location; @@ -28,8 +30,20 @@ const Footer = () => {