diff --git a/client/src/components/common/Footer.jsx b/client/src/components/common/Footer.jsx new file mode 100644 index 0000000..cffb719 --- /dev/null +++ b/client/src/components/common/Footer.jsx @@ -0,0 +1,101 @@ +import { useNavigate } from "react-router-dom"; +import { FaGithub, FaLinkedin, FaInstagram, FaTwitter } from "react-icons/fa"; + +export default function Footer() { + const navigate = useNavigate(); + + const quickLinks = [ + { label: "Home", path: "/landing" }, + { label: "Create Room", path: "/create-room" }, + { label: "Join Room", path: "/join-room" }, + { label: "How to Play", path: "/how-to-play" }, + { label: "About Dev", path: "/about" }, + ]; + + return ( + + ); +} diff --git a/client/src/pages/AboutDev.jsx b/client/src/pages/AboutDev.jsx index 3d4b989..f39feae 100644 --- a/client/src/pages/AboutDev.jsx +++ b/client/src/pages/AboutDev.jsx @@ -1,5 +1,6 @@ import { useEffect, useState } from "react"; import Navbar from "../components/common/Navbar"; +import Footer from "../components/common/Footer"; const AboutDev = () => { const [displayText, setDisplayText] = useState(""); @@ -36,7 +37,7 @@ const AboutDev = () => { ]; return ( -