import {useTranslation} from 'next-i18next'; import {serverSideTranslations} from 'next-i18next/serverSideTranslations'; import Page from '../components/Page' import Card from '../components/Card' function Privacy(): JSX.Element { const { t } = useTranslation(['common', 'index', 'privacy']); return (

{t('privacy:gdprNotice')}

{t('privacy:generalInfo')}

{t('privacy:contact')}

Marvin Sextro
{t('privacy:email')}:   covidpass@marvinsextro.de
{t('privacy:website')}:   https://marvinsextro.de

{t('privacy:process')}

{t('privacy:processFirst')}:

{t('privacy:processSecond')}:

{t('privacy:processThird')}:

{t('privacy:locallyProcessedData')}

{t('privacy:the')}   {t('privacy:schema')}   {t('privacy:specification')}

{t('privacy:serverProvider')}

{t('privacy:serverProviderIs')}

Hetzner Online GmbH
Industriestr. 25
91710 Gunzenhausen

{t('privacy:logFiles')}:

{t('privacy:rights')}

{t('privacy:rightsGranted')}:

{t('privacy:thirdParties')}

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