2021-06-26 14:22:53 +02:00
|
|
|
import { NextSeo } from 'next-seo';
|
|
|
|
|
2021-06-25 12:18:25 +02:00
|
|
|
import Form from '../components/Form'
|
|
|
|
import Card from '../components/Card'
|
|
|
|
import Page from '../components/Page'
|
|
|
|
|
|
|
|
export default function Home() {
|
|
|
|
return (
|
2021-06-26 14:22:53 +02:00
|
|
|
<>
|
|
|
|
<NextSeo
|
|
|
|
title="Covidpass"
|
|
|
|
description="Add your EU Digital Covid Vaccination Certificates to your favorite wallet app."
|
|
|
|
openGraph={{
|
|
|
|
url: 'https://covidpass.marvinsextro.de/',
|
|
|
|
title: 'CovidPass',
|
|
|
|
description: 'Add your EU Digital Covid Vaccination Certificates to your favorite wallet app.',
|
|
|
|
images: [
|
|
|
|
{
|
|
|
|
url: 'https://covidpass.marvinsextro.de/thumbnail.png',
|
2021-06-27 01:50:04 +02:00
|
|
|
width: 611,
|
|
|
|
height: 318,
|
2021-06-26 14:22:53 +02:00
|
|
|
alt: 'CovidPass: Add your EU Digital Covid Vaccination Certificates to your favorite wallet app.',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
site_name: 'CovidPass',
|
|
|
|
}}
|
|
|
|
twitter={{
|
|
|
|
handle: '@marvinsxtr',
|
|
|
|
site: '@marvinsxtr',
|
|
|
|
cardType: 'summary_large_image',
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<Page content={
|
2021-06-28 18:17:16 +02:00
|
|
|
<div className="space-y-5">
|
|
|
|
<Card content={
|
|
|
|
<p>
|
|
|
|
Add your EU Digital Covid Vaccination Certificates to your favorite wallet app. On iOS, please use the Safari Browser.
|
|
|
|
</p>
|
|
|
|
} />
|
2021-06-25 12:18:25 +02:00
|
|
|
|
2021-06-28 18:17:16 +02:00
|
|
|
<Form className="flex-grow" />
|
2021-06-26 14:22:53 +02:00
|
|
|
</div>
|
|
|
|
} />
|
|
|
|
</>
|
2021-06-25 12:18:25 +02:00
|
|
|
)
|
|
|
|
}
|