Replaced JavaScript with TypeScript.

This commit is contained in:
Daniel
2023-01-29 21:42:36 +03:30
parent 31010c96e9
commit 4cd0e8799c
12 changed files with 249 additions and 172 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>
)
}