1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-19 13:30:32 +09:00
namae/web/src/components/Footer.js

35 lines
868 B
JavaScript
Raw Normal View History

2019-07-31 12:22:31 +09:00
import React from 'react'
import styled from 'styled-components'
2019-07-31 13:57:48 +09:00
import { FaTwitter, FaGithubAlt } from 'react-icons/fa'
2019-07-31 12:22:31 +09:00
2019-07-31 18:54:28 +09:00
import { ExternalLink } from './Links'
2019-07-31 12:22:31 +09:00
export default function Footer() {
return (
<Container>
<p>
Made by U with{' '}
2019-07-31 13:57:48 +09:00
<span role="img" aria-label="coffee">
2019-07-31 12:22:31 +09:00
</span>
<br />
<br />
2019-07-31 18:54:28 +09:00
<ExternalLink href="https://twitter.com/uetschy">
2019-07-31 12:22:31 +09:00
<FaTwitter />
2019-07-31 18:54:28 +09:00
</ExternalLink>{' '}
<ExternalLink href="https://github.com/uetchy/namae">
2019-07-31 13:57:48 +09:00
<FaGithubAlt />
2019-07-31 18:54:28 +09:00
</ExternalLink>
2019-07-31 12:22:31 +09:00
</p>
</Container>
)
}
const Container = styled.footer`
margin: 40px 0;
text-align: center;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 0.8em;
`