Skip to content

Commit

Permalink
Add privacy page
Browse files Browse the repository at this point in the history
  • Loading branch information
sashachabin committed Dec 17, 2023
1 parent 310d14d commit 119122d
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions pages/privacy.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import Head from 'next/head'
import React from 'react'

const GOOGLE_DOCS =
'https://docs.google.com/document/d/e/2PACX-1vSSKtpDsflkuh1Q5-F3APYwEjpByTi3rk77Z_nvQR5_cH9Rp06hX6G_vqIyMW3g8zC4q-Hrcxm72ip0/pub'

function Privacy() {
return (
<>
<Head>
<title>Политика в отношении обработки персональных данных</title>
<meta name="robots" content="noindex" />
</Head>

<iframe
src={GOOGLE_DOCS}
style={{
position: 'fixed',
top: 0,
left: 0,
width: '100vw',
height: '100vh',
border: 0,
}}
/>
</>
)
}

export default Privacy

0 comments on commit 119122d

Please sign in to comment.