-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e4b13c4
commit 316f1c2
Showing
2 changed files
with
15 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; | ||
|
@@ -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> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |