2022-12-15 23:11:30 +00:00
|
|
|
import { Html, Head, Main, NextScript } from 'next/document'
|
|
|
|
import { StyledBody } from '../components/styles/generic'
|
2022-12-11 16:47:19 +00:00
|
|
|
|
2022-12-15 20:24:38 +00:00
|
|
|
|
|
|
|
export default function Document() {
|
2022-12-11 16:47:19 +00:00
|
|
|
return (
|
|
|
|
<Html lang='en'>
|
|
|
|
<Head />
|
2022-12-15 23:11:30 +00:00
|
|
|
<StyledBody>
|
2022-12-11 16:47:19 +00:00
|
|
|
<Main />
|
|
|
|
<NextScript />
|
2022-12-15 23:11:30 +00:00
|
|
|
</StyledBody>
|
2022-12-11 16:47:19 +00:00
|
|
|
</Html>
|
|
|
|
)
|
|
|
|
}
|