Files
grungnet/src/components/Footer.js
T

38 lines
768 B
JavaScript
Raw Normal View History

2020-04-09 18:19:07 +10:00
import React from "react";
2020-04-25 00:02:06 +10:00
import { Flex } from "theme-ui";
import Link from "./Link";
2020-04-09 18:19:07 +10:00
function Footer() {
return (
<Flex
bg="muted"
sx={{
height: "48px",
width: "100%",
alignItems: "center",
justifyContent: "center",
2020-05-31 18:30:23 +10:00
paddingBottom: "env(safe-area-inset-bottom)",
2020-04-09 18:19:07 +10:00
}}
>
2020-04-25 00:02:06 +10:00
<Link m={2} to="/about" variant="footer">
2020-04-09 18:19:07 +10:00
About
</Link>
2020-04-25 00:02:06 +10:00
<Link m={2} to="/" variant="footer">
2020-04-09 18:19:07 +10:00
Home
</Link>
2020-04-25 00:02:06 +10:00
<Link m={2} to="/faq" variant="footer">
2020-04-09 18:19:07 +10:00
FAQ
</Link>
<Link m={2} to="/releaseNotes" variant="footer">
Release Notes
</Link>
2020-06-30 19:19:33 +10:00
<Link m={2} to="/howTo" variant="footer">
How To
</Link>
2020-04-09 18:19:07 +10:00
</Flex>
);
}
export default Footer;