diff --git a/src/components/Footer/Footer.js b/src/components/Footer/Footer.js index 7b930e6..ec626b3 100644 --- a/src/components/Footer/Footer.js +++ b/src/components/Footer/Footer.js @@ -2,58 +2,62 @@ import React from "react"; import Badge from "react-bootstrap/Badge"; import { Link } from "react-router-dom"; import "./footer.css"; + export default function Footer({ dark, setDark }) { - return ( -
- -
- ); + + const openProjectInNewTab = () => { + window.open("https://github.com/AsishRaju/450-DSA", "_blank"); + }; + + return ( +
+ +
+ ); }