mirror of
https://github.com/Stone-Red-Code/website.git
synced 2026-09-06 07:56:11 +02:00
ui: add footer below pages
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user