This commit is contained in:
Julian Tölle 2021-03-21 00:15:22 +01:00
parent 42ec5539dc
commit b536ee4124
23 changed files with 8696 additions and 223 deletions

17
pages/_document.tsx Normal file
View file

@ -0,0 +1,17 @@
import Document, { Html, Head, Main, NextScript } from "next/document";
class MyDocument extends Document {
render() {
return (
<Html lang="de-DE">
<Head />
<body className="bg-gray-900">
<Main />
<NextScript />
</body>
</Html>
);
}
}
export default MyDocument;