import { FaLinkedin } from "react-icons/fa"; import { animateScroll as scroll } from "react-scroll"; import twitterImg from "../../images/square-x-twitter.svg"; import { FooterContainer, FooterImg, FooterWrap, SocialIconLink, SocialIcons, SocialLogo, SocialMedia, SocialMediaWrap, WebsiteRights, } from "./FooterElements"; const Footer = () => { const toggleHome = () => { scroll.scrollToTop(); }; return ( <> Understanding Deep Learning ©{new Date().getFullYear()} Simon J.D. Prince Images by StorySet on FreePik:{" "} {" "} [1]{" "} {" "} [2] {" "} {" "} [3] {" "} {" "} [4] ); }; export default Footer;