From 08e0a4b7119238f80cd3c3e5fe11697496c45edb Mon Sep 17 00:00:00 2001 From: Princeton D'souza Date: Sun, 15 Oct 2023 17:23:34 +0530 Subject: [PATCH] Created simple Footer component --- src/Components/Footer.jsx | 16 ++++++++++++++++ src/Components/Home.jsx | 2 ++ tailwind.config.js | 3 +++ 3 files changed, 21 insertions(+) create mode 100644 src/Components/Footer.jsx 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() { +