Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

link to github #41

Merged
merged 1 commit into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
Loading