Files
website/src/components/Footer/index.tsx
T

19 lines
377 B
TypeScript

import React from "react"
import * as SC from "./styles"
import { Container } from "../Container"
export function Footer() {
return (
<SC.FooterWrapper>
<Container>
<p>
© {new Date().getFullYear()}, Built with
{` `}
<a href="https://www.gatsbyjs.org">Gatsby</a>
</p>
</Container>
</SC.FooterWrapper>
)
}