grungnet/src/components/Footer.js
Mitchell McCaffrey 5b9cabf532 Moved donate modal to its own route
Changed routes to be kebab case instead of camel case
2020-10-16 22:09:36 +11:00

38 lines
770 B
JavaScript

import React from "react";
import { Flex } from "theme-ui";
import Link from "./Link";
function Footer() {
return (
<Flex
bg="muted"
sx={{
height: "48px",
width: "100%",
alignItems: "center",
justifyContent: "center",
paddingBottom: "env(safe-area-inset-bottom)",
}}
>
<Link m={2} to="/about" variant="footer">
About
</Link>
<Link m={2} to="/" variant="footer">
Home
</Link>
<Link m={2} to="/faq" variant="footer">
FAQ
</Link>
<Link m={2} to="/release-notes" variant="footer">
Release Notes
</Link>
<Link m={2} to="/how-to" variant="footer">
How To
</Link>
</Flex>
);
}
export default Footer;