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
@@ -3,9 +3,9 @@ import packageJson from "../../../package.json"
import { Container } from "../Container"
import * as SC from "./styles"
export const HomeFooter: FC = () => {
export const Footer: FC = () => {
return (
<SC.HomeFooterWrapper>
<SC.FooterWrapper>
<Container>
<p>
© {new Date().getFullYear()}, Built with
@@ -14,6 +14,6 @@ export const HomeFooter: FC = () => {
<a href={packageJson.repository.url}>GitHub</a>
</p>
</Container>
</SC.HomeFooterWrapper>
</SC.FooterWrapper>
)
}
@@ -1,6 +1,8 @@
import styled from "styled-components"
export const HomeFooterWrapper = styled.footer`
export const FooterWrapper = styled.footer`
margin-top: 128px;
& a {
display: inline;
color: #0090d8;