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