mirror of
https://github.com/Steffo99/steffoweb.git
synced 2024-11-21 23:54:30 +00:00
15 lines
360 B
TypeScript
15 lines
360 B
TypeScript
import Document, {Html, Head, Main, NextScript} from "next/document"
|
|
|
|
export default class extends Document {
|
|
render() {
|
|
return (
|
|
<Html>
|
|
<Head/>
|
|
<body className={"layout-center"}>
|
|
<Main/>
|
|
<NextScript/>
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|
|
}
|