aboutsummaryrefslogtreecommitdiff
path: root/pages/_document.js
diff options
context:
space:
mode:
Diffstat (limited to 'pages/_document.js')
-rw-r--r--pages/_document.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/pages/_document.js b/pages/_document.js
new file mode 100644
index 0000000..effc121
--- /dev/null
+++ b/pages/_document.js
@@ -0,0 +1,24 @@
+import { Html, Head, Main, NextScript } from "next/document";
+
+export default function Document() {
+ return (
+ <Html lang="en">
+ <Head>
+ <link rel="manifest" href="/manifest.json" />
+ <link rel="apple-touch-icon" href="/icon.png"></link>
+ <meta name="theme-color" content="#141519" />
+ <link
+ rel="stylesheet"
+ href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
+ integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog=="
+ crossOrigin="anonymous"
+ />
+ <link rel="icon" href="/c.svg" />
+ </Head>
+ <body>
+ <Main />
+ <NextScript />
+ </body>
+ </Html>
+ );
+}