Files
grungnet/src/components/Footer.js
T

34 lines
637 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-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-04-09 18:19:07 +10:00
</Flex>
);
}
export default Footer;