mirror of
https://github.com/Steffo99/steffoweb.git
synced 2024-11-22 16:14:30 +00:00
16 lines
360 B
TypeScript
16 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>
|
||
|
)
|
||
|
}
|
||
|
}
|