diff --git a/src/Components/Footer.jsx b/src/Components/Footer.jsx new file mode 100644 index 0000000..3f719eb --- /dev/null +++ b/src/Components/Footer.jsx @@ -0,0 +1,16 @@ +import React from "react"; +import { Link } from "react-router-dom"; +import { FaGithub } from "react-icons/fa"; + +const Footer = () => { + return ( +
+ + + +
© 2023 BeatBridge
+
+ ); +}; + +export default Footer; diff --git a/src/Components/Home.jsx b/src/Components/Home.jsx index bd28094..07ff8d5 100644 --- a/src/Components/Home.jsx +++ b/src/Components/Home.jsx @@ -4,6 +4,7 @@ import Background from "/Background.png"; import PageThree from "./PageThree"; import Features from "./Features"; import Navbar from "./Navbar"; +import Footer from "./Footer"; export default function Home() { const animationControls = { @@ -79,6 +80,7 @@ export default function Home() { +