mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-03-29 12:04:04 -04:00
26 lines
1023 B
TypeScript
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>
|
|
)
|
|
}
|