Files
Compass/web/pages/_document.tsx
2025-10-11 12:15:26 +02:00

26 lines
1023 B
TypeScript

import { Html, Head, Main, NextScript } from 'next/document'
import { ENV_CONFIG } from 'common/envs/constants'
import Script from 'next/script'
export default function Document() {
return (
<Html lang="en">
<Head>
<link rel="icon" href={ENV_CONFIG.faviconPath} />
{/*<link*/}
{/* href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;500;600;700&display=swap"*/}
{/* // href="https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:wght@400;500;600;700&display=swap"*/}
{/* // href="https://fonts.googleapis.com/css2?family=Merriweather:wght@400;500;600;700&display=swap"*/}
{/* // href="https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&display=swap"*/}
{/* rel="stylesheet"*/}
{/*/>*/}
<Script src="/init-theme.js" strategy="beforeInteractive" />
</Head>
<body className="body-bg text-ink-1000">
<Main />
<NextScript />
</body>
</Html>
)
}