import React from 'react' import styled from 'styled-components' import { FaTwitter, FaGithubAlt } from 'react-icons/fa' import { ExternalLink } from './Links' export default function Footer() { return (

Made with{' '} 🦀 {' '} by{' '} Yasuaki Uechi

) } 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.7rem; display: flex; justify-content: center; line-height: 1em; ${ExternalLink} { color: black; text-decoration: none; } ` const Links = styled.div` margin-left: 15px; display: flex; align-items: center; ${ExternalLink} { margin-right: 5px; } ` const Bold = styled.span` font-weight: bold; `