2022-09-17 16:37:33 +02:00
|
|
|
/* eslint-disable @next/next/no-sync-scripts */
|
2022-10-01 07:00:05 +02:00
|
|
|
import { Html, Head, Main, NextScript } from 'next/document'
|
2021-11-29 15:19:07 +01:00
|
|
|
|
2022-10-01 07:00:05 +02:00
|
|
|
const Document = () => (
|
|
|
|
<Html>
|
|
|
|
<Head>
|
|
|
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
|
|
<link
|
|
|
|
href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap"
|
|
|
|
rel="stylesheet"
|
|
|
|
/>
|
|
|
|
<meta name="google" content="notranslate" />
|
|
|
|
<script src="/__env.js" />
|
|
|
|
</Head>
|
|
|
|
<body>
|
|
|
|
<Main />
|
|
|
|
<NextScript />
|
|
|
|
</body>
|
|
|
|
</Html>
|
|
|
|
)
|
2021-11-29 15:19:07 +01:00
|
|
|
|
2022-10-01 07:00:05 +02:00
|
|
|
export default Document
|