Init NextJS app

This commit is contained in:
aronmal 2023-01-06 15:58:48 +01:00
parent ceed5206ba
commit 16b48b3ead
Signed by: aronmal
GPG key ID: 816B7707426FC612
17 changed files with 6000 additions and 0 deletions

View file

@ -0,0 +1,13 @@
import { Html, Head, Main, NextScript } from 'next/document'
export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
)
}