Skip to content

Commit

Permalink
Merge pull request #34 from Princeton21/feature/footer
Browse files Browse the repository at this point in the history
Created simple Footer component
  • Loading branch information
pooranjoyb committed Oct 15, 2023
2 parents 92a3599 + 08e0a4b commit e5105d8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/Components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from "react";
import { Link } from "react-router-dom";
import { FaGithub } from "react-icons/fa";

const Footer = () => {
return (
<div className="h-16 flex justify-center items-center bg-custom-pink border-t-2 border-white">
<Link to="https://github.com/pooranjoyb/BeatBridge" className="mr-2">
<FaGithub size={24} />
</Link>
<div>&copy; 2023 BeatBridge</div>
</div>
);
};

export default Footer;
2 changes: 2 additions & 0 deletions src/Components/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down Expand Up @@ -79,6 +80,7 @@ export default function Home() {

<Features />
<PageThree />
<Footer/>
</>
);
}
3 changes: 3 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ export default {
content: ["./src/**/*.{html,js,jsx}"],
theme: {
extend: {
colors: {
"custom-pink": "#ff86c8",
},
fontFamily: {
josh: ["Jost", "sans"],
},
Expand Down

0 comments on commit e5105d8

Please sign in to comment.