summaryrefslogtreecommitdiff
path: root/pages/_document.tsx
blob: ef9fcd3b0fa9629f8660fd8a9fd764398c794986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { ColorModeScript } from '@chakra-ui/react'
import NextDocument, { Html, Head, Main, NextScript } from 'next/document'
import theme from '../lib/theme'

export default function Document() {
  return (
    <Html lang="en">
      <Head />
      <body>
        <ColorModeScript initialColorMode={theme.config.initialColorMode} />
        <Main />
        <NextScript />
      </body>
    </Html>
  )
}