Skip to content

Commit

Permalink
link to github (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
codekansas authored Jun 3, 2024
1 parent e4b13c4 commit 316f1c2
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
10 changes: 2 additions & 8 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import "bootstrap/dist/css/bootstrap.min.css";
import Footer from "components/nav/Footer";
import TopNavbar from "components/nav/TopNavbar";
import NotFoundRedirect from "components/NotFoundRedirect";
import { AlertQueue, AlertQueueProvider } from "hooks/alerts";
Expand Down Expand Up @@ -36,14 +37,7 @@ const App = () => {
</Routes>
</Container>

<footer className="fixed-bottom">
{/* Solid background */}
<div className="text-center bg-body-tertiary p-2">
<a href="mailto:[email protected]">
[email protected]
</a>
</div>
</footer>
<Footer />
</OneTimePasswordWrapper>
</AlertQueue>
</AlertQueueProvider>
Expand Down
13 changes: 13 additions & 0 deletions frontend/src/components/nav/Footer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const Footer = () => {
return (
<footer className="fixed-bottom">
{/* Solid background */}
<div className="text-center bg-body-tertiary p-2">
<a href="mailto:[email protected]">[email protected]</a> |{" "}
<a href="https://github.com/kscalelabs/store">Github</a>
</div>
</footer>
);
};

export default Footer;

0 comments on commit 316f1c2

Please sign in to comment.