import React from 'react'; import { Trans, useTranslation } from 'react-i18next'; import { FaGithub, FaProductHunt, FaTwitter } from 'react-icons/fa'; import { GoHeart } from 'react-icons/go'; import styled from '@emotion/styled'; import Contributors from '../components/Contributors'; import { Section } from '../src/theme'; import { tablet } from '../src/util/css'; const Footer: React.FC = () => { return ( ); }; export default Footer; const Languages = () => { const { t } = useTranslation(); return ( {t('language')} English Deutsch Français 日本語 简体中文 繁體中文 Português-BR Español Italiano Русский Nederlands Bahasa Indonesia ); }; const Community = () => { const { t } = useTranslation(); return ( {t('community')} GitHub {t('issues')} {t('blog')} {t('contributors')} ✨ Send a pull request and become a contributor! ); }; const About = () => { const { t } = useTranslation(); const { i18n: { language }, } = useTranslation(); return ( {t('about')} Made with{' '} ☕️ {' '} by{' '} Yasuaki Uechi Sponsor {language === 'ja' ? ( <> 情報の取得元 このサービスは、国税庁法人番号システムのWeb-API機能を利用して取得した情報をもとに作成していますが、サービスの内容は国税庁によって保証されたものではありません。 > ) : null} ); }; const Container = styled(Section)` --text: #bdbdbd; --background: #150c30; display: flex; flex-direction: row; justify-content: space-around; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; background: var(--background); color: var(--text); a { color: var(--text); text-decoration: none; } ul { li { list-style-type: none; } } ${tablet} { flex-direction: column; } `; const Pane = styled.div` margin: 0 20px; font-size: 1rem; ${tablet} { margin-bottom: 50px; } `; const Box = styled.div` margin: 15px 0; `; const Title = styled.h3` margin-bottom: 15px; `; const Subtitle = styled.h4` margin-bottom: 12px; `; const Subtext = styled.span` font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); `; const Links = styled.div` display: flex; align-items: center; a { margin-right: 10px; } `; const ShareBox = styled.div` margin-top: 15px; line-height: 1em; font-size: 1.5rem; display: flex; align-items: center; `; const Bold = styled.span` font-weight: bold; `; const SponsorBadge = styled.div` padding: 5px 13px 5px 10px; display: flex; flex-direction: row; align-items: center; line-height: 1rem; font-size: 1rem; border-radius: 5px; background-color: #f8f9fa; color: black; cursor: pointer; transition: opacity 200ms ease-out; :hover { opacity: 0.8; } svg { color: rgb(236, 69, 171); margin-right: 5px; } `;
Made with{' '} ☕️ {' '} by{' '} Yasuaki Uechi
このサービスは、国税庁法人番号システムのWeb-API機能を利用して取得した情報をもとに作成していますが、サービスの内容は国税庁によって保証されたものではありません。