mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-05 23:43:37 +02:00
19 lines
377 B
TypeScript
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>
|
|
)
|
|
}
|