mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-01-24 13:49:15 -05:00
24 lines
751 B
TypeScript
24 lines
751 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=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>
|
|
)
|
|
}
|