mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
32 lines
624 B
TypeScript
32 lines
624 B
TypeScript
import Document, {
|
|
Html,
|
|
Head,
|
|
Main,
|
|
NextScript,
|
|
DocumentContext,
|
|
DocumentInitialProps
|
|
} from 'next/document'
|
|
|
|
class MyDocument extends Document {
|
|
static async getInitialProps(
|
|
context: DocumentContext
|
|
): Promise<DocumentInitialProps> {
|
|
const initialProps = await Document.getInitialProps(context)
|
|
return initialProps
|
|
}
|
|
|
|
render(): JSX.Element {
|
|
return (
|
|
<Html>
|
|
<Head />
|
|
<body className='bg-white dark:bg-black text-black dark:text-white font-headline'>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default MyDocument
|