Created next.js project

This commit is contained in:
Mike Baier
2023-05-02 14:22:01 +02:00
parent 27da0c3152
commit 86a2068f83
17 changed files with 305 additions and 0 deletions
+13
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>
)
}