2021-06-25 12:18:25 +02:00
import Page from '../components/Page'
import Card from '../components/Card'
export default function Privacy ( ) {
return (
< Page content = {
< Card step = " " heading = "Privacy Policy" content = {
2021-06-26 14:22:53 +02:00
< div className = "space-y-2" >
< p >
Our privacy policy is based on the terms used by the European legislator for the adoption of the General Data Protection Regulation ( GDPR ) .
< / p >
< p className = "font-bold" > General Information < / p >
< div className = "px-4" >
< ul className = "list-disc" >
< li >
The necessary data to generate a certificate is extracted from the QR code in your browser . Only the extracted data is sent to our server , where we generate and sign the pass file .
< / l i >
< li >
Your data is not stored beyond the active browser session and the site does not use cookies .
< / l i >
< li >
We transmit your data securely over https .
< / l i >
< li >
Our server is hosted in Nuremberg , Germany .
< / l i >
< li >
The source code of this site is available on < a href = "https://github.com/marvinsxtr/covidpass" className = "underline" > GitHub < / a > .
< / l i >
< li >
By default , Apple Wallet passes are accessible from the lock screen . This can be changed in the < a href = "https://support.apple.com/de-de/guide/iphone/iph9a2a69136/ios" className = "underline" > settings < / a > .
< / l i >
< li >
The server provider processes data to provide this site . In order to better understand what measures they take to protect your data , please also read their < a href = "https://www.hetzner.com/de/rechtliches/datenschutz/" className = "underline" > privacy policy < /a> and the <a href="https:/ / docs . hetzner . com / general / general - terms - and - conditions / data - privacy - faq / " className=" underline " > data privacy FAQ < / a >
< / l i >
< / u l >
< / d i v >
< p className = "font-bold" > Contact < / p >
< p >
Marvin Sextro < br / >
Wilhelm - Busch - Str . 8 A < br / >
30167 Hannover < br / >
Germany < br / >
Email : marvin . sextro @ gmail . com < br / >
Website : < a href = "https://marvinsextro.de" className = "underline" > https : //marvinsextro.de</a><br />
< / p >
< p className = "font-bold" > Server provider < / p >
< p >
Our server provider is < a href = "https://www.hetzner.com/" className = "underline" > Hetzner Online GmbH < / a > .
The following data may be collected and stored in the server log files :
< / p >
< div className = "px-4" >
< ul className = "list-disc" >
< li > The browser types and versions used < / l i >
< li > The operating system used by the accessing system < / l i >
< li > The website from which an accessing system reaches our website ( so - called referrers ) < / l i >
< li > The date and time of access < / l i >
< li > The pseudonymised IP addresses < / l i >
< / u l >
< / d i v >
< p className = "font-bold" > Your rights < / p >
In accordance with the GDPR you have the following rights :
< div className = "px-4" >
< ul className = "list-disc" >
< li >
Right of access to your data : You have the right to know what data has been collected about you and how it was processed .
< / l i >
< li >
Right to be forgotten : Erasure of your personal data .
< / l i >
< li >
Right of rectification : You have the right to correct inaccurate data .
< / l i >
< li >
Right of data portability : You have the right to transfer your data from one processing system into another .
< / l i >
< / u l >
< / d i v >
< p className = "font-bold" > Third parties linked < / p >
< div className = "px-4" >
< ul className = "list-disc" >
< li >
GitHub : < a href = "https://docs.github.com/en/github/site-policy/github-privacy-statement" className = "underline" > Privacy Policy < / a >
< / l i >
< li >
PayPal : < a href = "https://www.paypal.com/de/webapps/mpp/ua/privacy-full?locale.x=en_EN" className = "underline" > Privacy Policy < / a >
< / l i >
< li >
Gmail / Google : < a href = "https://policies.google.com/privacy?hl=en-US" className = "underline" > Privacy Policy < / a >
< / l i >
< li >
Apple may sync your passes via iCloud : < a href = "https://www.apple.com/legal/privacy/en-ww/" className = "underline" > Privacy Policy < / a >
< / l i >
< / u l >
< / d i v >
< / d i v >
2021-06-25 12:18:25 +02:00
} / >
} / >
)
}