ui: add footer below pages

This commit is contained in:
Jean-Philippe Sirois
2020-01-27 21:45:14 -05:00
parent b3ac87e1b4
commit a52982a79c
3 changed files with 11 additions and 5 deletions
+19
View File
@@ -0,0 +1,19 @@
import React, { FC } from "react"
import packageJson from "../../../package.json"
import { Container } from "../Container"
import * as SC from "./styles"
export const Footer: FC = () => {
return (
<SC.FooterWrapper>
<Container>
<p>
© {new Date().getFullYear()}, Built with
{` `}
<a href="https://www.gatsbyjs.org">Gatsby</a> - Source on{" "}
<a href={packageJson.repository.url}>GitHub</a>
</p>
</Container>
</SC.FooterWrapper>
)
}