diff --git a/client/src/common/components/Footer/Footer.jsx b/client/src/common/components/Footer/Footer.jsx new file mode 100644 index 0000000..c3ed223 --- /dev/null +++ b/client/src/common/components/Footer/Footer.jsx @@ -0,0 +1,31 @@ +import "./styles.sass"; +import Logo from "@/common/images/bs2ab.png"; +import {Link, useLocation} from "react-router-dom"; +import {FontAwesomeIcon} from "@fortawesome/react-fontawesome"; +import {faHome} from "@fortawesome/free-solid-svg-icons"; + +export const Footer = () => { + const location = useLocation(); + + const isLegalPage = location.pathname === "/imprint" || location.pathname === "/privacy"; + + return ( + + ) +} \ No newline at end of file