import {NextSeo} from 'next-seo'; import {useTranslation} from 'next-i18next'; import {serverSideTranslations} from 'next-i18next/serverSideTranslations'; import Form from '../components/Form'; import Card from '../components/Card'; import Page from '../components/Page'; import { useEffect, useState } from 'react'; function Index(): JSX.Element { const { t } = useTranslation(['common', 'index', 'errors']); const title = 'Grassroots - Ontario vaccination receipt to your Apple wallet'; const description = 'Stores it on iPhone with a QR code for others to validate in a privacy respecting way.'; return ( <>

{t('common:subtitle')}


{t('common:subtitle2')}

}/>
}/> ) } export async function getStaticProps({ locale }) { return { props: { ...(await serverSideTranslations(locale, ['common', 'index', 'errors'])), }, }; } export default Index;