mirror of
https://github.com/CompeyDev/seal.devcomp.xyz.git
synced 2025-01-06 02:49:13 +00:00
13 lines
231 B
TypeScript
13 lines
231 B
TypeScript
import { Html, Head, Main, NextScript } from 'next/document'
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html lang="en">
|
|
<Head />
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|