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>
|
2020-10-16 22:09:36 +11:00
|
|
|
<Link m={2} to="/release-notes" variant="footer">
|
2020-05-07 22:29:31 +10:00
|
|
|
Release Notes
|
|
|
|
|
</Link>
|
2020-10-16 22:09:36 +11:00
|
|
|
<Link m={2} to="/how-to" variant="footer">
|
2020-06-30 19:19:33 +10:00
|
|
|
How To
|
|
|
|
|
</Link>
|
2020-04-09 18:19:07 +10:00
|
|
|
</Flex>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Footer;
|