diff options
| author | Factiven <[email protected]> | 2023-04-11 23:23:29 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-04-11 23:23:29 +0700 |
| commit | 1fcdd9f7d859b925bf92265f441655d5522e351c (patch) | |
| tree | 86391522f6fcc70d105f7e796a9f91d132ee4a29 /pages/_document.js | |
| parent | Initial commit (diff) | |
| download | moopa-1fcdd9f7d859b925bf92265f441655d5522e351c.tar.xz moopa-1fcdd9f7d859b925bf92265f441655d5522e351c.zip | |
initial commit
Diffstat (limited to 'pages/_document.js')
| -rw-r--r-- | pages/_document.js | 24 |
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> + ); +} |