1
Fork 0
mirror of https://github.com/Steffo99/steffoweb.git synced 2024-10-16 15:27:28 +00:00
steffoweb/pages/_document.tsx

16 lines
360 B
TypeScript
Raw Normal View History

2023-05-28 02:37:00 +00:00
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>
)
}
}