86 lines
2.9 KiB
TypeScript
86 lines
2.9 KiB
TypeScript
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
|
|
/* eslint-disable functional/no-class */
|
|
import NextDocument, { Html, Head, Main, NextScript } from 'next/document'
|
|
import { getCssText, globalStyles } from '../components/tokens/stitches.config'
|
|
|
|
export default class Document extends NextDocument {
|
|
render() {
|
|
globalStyles()
|
|
|
|
return (
|
|
<Html lang="en">
|
|
<Head>
|
|
<style
|
|
id="stitches"
|
|
dangerouslySetInnerHTML={{ __html: getCssText() }}
|
|
/>
|
|
<link rel="manifest" href="/manifest.webmanifest" />
|
|
<script async src="/static/scripts/intercom.js" />
|
|
<script async src="/static/scripts/inject-sw.js" />
|
|
|
|
{/* prefetch (not preload) fonts that will be used by the reader */}
|
|
<link rel="prefetch" href="/static/fonts/Lora/Lora-Regular.ttf" />
|
|
<link rel="prefetch" href="/static/fonts/Lora/Lora-Bold.ttf" />
|
|
<link rel="prefetch" href="/static/fonts/Lora/Lora-Italic.ttf" />
|
|
<link
|
|
rel="prefetch"
|
|
href="/static/fonts/Merriweather/Merriweather-Regular.ttf"
|
|
/>
|
|
<link
|
|
rel="prefetch"
|
|
href="/static/fonts/Merriweather/Merriweather-Bold.ttf"
|
|
/>
|
|
<link
|
|
rel="prefetch"
|
|
href="/static/fonts/Merriweather/Merriweather-Italic.ttf"
|
|
/>
|
|
<link
|
|
rel="prefetch"
|
|
href="/static/fonts/Open_Sans/OpenSans-Regular.ttf"
|
|
/>
|
|
<link
|
|
rel="prefetch"
|
|
href="/static/fonts/Open_Sans/OpenSans-Bold.ttf"
|
|
/>
|
|
<link
|
|
rel="prefetch"
|
|
href="/static/fonts/Open_Sans/OpenSans-Italic.ttf"
|
|
/>
|
|
<link rel="prefetch" href="/static/fonts/Roboto/Roboto-Regular.ttf" />
|
|
<link rel="prefetch" href="/static/fonts/Roboto/Roboto-Bold.ttf" />
|
|
<link rel="prefetch" href="/static/fonts/Roboto/Roboto-Italic.ttf" />
|
|
<link
|
|
rel="prefetch"
|
|
href="/static/fonts/Crimson_Text/CrimsonText-Regular.ttf"
|
|
/>
|
|
<link
|
|
rel="prefetch"
|
|
href="/static/fonts/Crimson_Text/CrimsonText-Bold.ttf"
|
|
/>
|
|
<link
|
|
rel="prefetch"
|
|
href="/static/fonts/Crimson_Text/CrimsonText-Italic.ttf"
|
|
/>
|
|
<link
|
|
rel="prefetch"
|
|
href="/static/fonts/Source_Serif_Pro/SourceSerifPro-Regular.ttf"
|
|
/>
|
|
<link
|
|
rel="prefetch"
|
|
href="/static/fonts/Source_Serif_Pro/SourceSerifPro-Bold.ttf"
|
|
/>
|
|
<link
|
|
rel="prefetch"
|
|
href="/static/fonts/Source_Serif_Pro/SourceSerifPro-Italic.ttf"
|
|
/>
|
|
<link rel="prefetch" href="/static/fonts/SFMono/SFMonoRegular.otf" />
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|
|
}
|