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 Alert from '../components/Alert'; import { useEffect, useState } from 'react'; import { isIOS, isSafari, isAndroid} from 'react-device-detect'; function Index(): JSX.Element { const { t } = useTranslation(['common', 'index', 'errors']); const [warningMessages, _setWarningMessages] = useState>([]); const setWarningMessage = (message: string) => { if (!message) return; const translation = t('errors:'.concat(message)); _setWarningMessages(Array.from(new Set([...warningMessages, translation !== message ? translation : message]))); }; const deleteWarningMessage = (message: string) => _setWarningMessages(warningMessages.filter(item => item !== message)); // useEffect(() => { // if (!isSafari) setWarningMessage("iPhone users, only Safari is supported at the moment. Please switch to Safari to prevent any unexpected errors.") // }) // If you previously created a vaccination receipt before Sept. 23rd and need to add your date of birth on your vaccination receipt, please reimport your Ministry of Health official vaccination receipt again below and the date of birth will now be visible on the created receipt 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 ( <> {warningMessages.map((message, i) => deleteWarningMessage(message)} /> )}

{t('common:subtitle')}


{t('common:subtitle2')}


Sept 25 evening updates - Improvements:

  • Better support the use of .pkpass files on non-iOS platforms (thx samuelyeungkc)
  • Improved multiple passes handling
  • Added FAQ on how critical data (name & date of birth) is protected and they stay private to you.

{t('common:continueSpirit')}

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