summaryrefslogtreecommitdiff
path: root/pages/_document.tsx
diff options
context:
space:
mode:
authorMichal Sapka <michal@sapka.me>2022-08-06 22:36:07 +0200
committerMichal Sapka <michal@sapka.me>2022-08-06 22:36:07 +0200
commitdf14504b05642b39ab84d91aaab0b5f96283f5dd (patch)
treeaf0c95ec9c7a024db15672883f567d718470f543 /pages/_document.tsx
parentd1d59e5b53ceaf77e731555ab5f0a9148e6a7d93 (diff)
feat: topnav draft
Diffstat (limited to 'pages/_document.tsx')
-rw-r--r--pages/_document.tsx14
1 files changed, 14 insertions, 0 deletions
diff --git a/pages/_document.tsx b/pages/_document.tsx
new file mode 100644
index 00000000..e2f593fb
--- /dev/null
+++ b/pages/_document.tsx
@@ -0,0 +1,14 @@
+import { Html, Head, Main, NextScript } from 'next/document'
+
+export default function Document() {
+ return (
+ <Html lang="en">
+ <Head />
+ <body>
+ <Main />
+ <NextScript />
+ </body>
+ </Html>
+ )
+}
+