import NextHead from 'components/NextHead' import type { NextPage } from 'next' import Link from 'next/link' import useTranslation from 'next-translate/useTranslation' import { FiGithub } from 'react-icons/fi' const Home: NextPage = () => { const { t } = useTranslation() return (

{t('home:title')}
{t('home:subtitle')}

{t('common:repo-github')}
) } export default Home