2ec2f70772
Closes #17, #15
15 lines
301 B
TypeScript
15 lines
301 B
TypeScript
import { Html, Head, Main, NextScript } from 'next/document'
|
|
import { StyledBody } from '../components/styles/generic'
|
|
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html lang='en'>
|
|
<Head />
|
|
<StyledBody>
|
|
<Main />
|
|
<NextScript />
|
|
</StyledBody>
|
|
</Html>
|
|
)
|
|
} |