mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-06 23:43:45 +02:00
refact: extra footer into its own component
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import React from "react"
|
||||
import * as SC from "./styles"
|
||||
import Container from "../Container"
|
||||
|
||||
const Footer = () => {
|
||||
return (
|
||||
<SC.FooterWrapper>
|
||||
<Container>
|
||||
© {new Date().getFullYear()}, Built with
|
||||
{` `}
|
||||
<a href="https://www.gatsbyjs.org">Gatsby</a>
|
||||
</Container>
|
||||
</SC.FooterWrapper>
|
||||
)
|
||||
}
|
||||
|
||||
export default Footer
|
||||
@@ -0,0 +1,4 @@
|
||||
import { Link } from "gatsby"
|
||||
import styled from "styled-components"
|
||||
|
||||
export const FooterWrapper = styled.footer``
|
||||
Reference in New Issue
Block a user