mirror of
https://github.com/apricote/ein-pfeil-am-rechten-fleck.de.git
synced 2026-02-08 02:37:01 +00:00
init
This commit is contained in:
parent
42ec5539dc
commit
b536ee4124
23 changed files with 8696 additions and 223 deletions
17
pages/_document.tsx
Normal file
17
pages/_document.tsx
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue