feat: add source to footer

This commit is contained in:
Jean-Philippe Sirois
2019-10-08 23:45:41 -04:00
parent 937d6e27e7
commit 5f6111c82d
+3 -1
View File
@@ -1,4 +1,5 @@
import React, { FC } from "react"
import packageJson from "../../../package.json"
import { Container } from "../Container"
import * as SC from "./styles"
@@ -9,7 +10,8 @@ export const Footer: FC = () => {
<p>
© {new Date().getFullYear()}, Built with
{` `}
<a href="https://www.gatsbyjs.org">Gatsby</a>
<a href="https://www.gatsbyjs.org">Gatsby</a> - Source on{" "}
<a href={packageJson.repository.url}>GitHub</a>
</p>
</Container>
</SC.FooterWrapper>