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

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

🇬🇧 🇯🇵
); } const Container = styled.div` display: flex; flex-direction: column; align-items: center; margin: 40px 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; font-size: 0.7rem; a { color: black; text-decoration: none; } `; const Box = styled.footer` margin-bottom: 10px; display: flex; flex-direction: row; justify-content: center; line-height: 1em; `; const Links = styled.div` margin-left: 15px; display: flex; align-items: center; ${ExternalLink} { margin-right: 5px; } `; const Bold = styled.span` font-weight: bold; `;