diff options
| author | Factiven <[email protected]> | 2023-12-24 13:03:54 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-12-24 13:03:54 +0700 |
| commit | 50a0f0240d7fef133eb5acc1bea2b1168b08e9db (patch) | |
| tree | 307e09e505580415a58d64b5fc3580e9235869f1 /pages/_document.tsx | |
| parent | Update README.md (#104) (diff) | |
| download | moopa-50a0f0240d7fef133eb5acc1bea2b1168b08e9db.tar.xz moopa-50a0f0240d7fef133eb5acc1bea2b1168b08e9db.zip | |
migrate to typescript
Diffstat (limited to 'pages/_document.tsx')
| -rw-r--r-- | pages/_document.tsx | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/pages/_document.tsx b/pages/_document.tsx new file mode 100644 index 0000000..e89e516 --- /dev/null +++ b/pages/_document.tsx @@ -0,0 +1,29 @@ +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" /> + <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="/svg/c.svg" /> + <meta name="apple-mobile-web-app-capable" content="yes"></meta> + <meta + name="apple-mobile-web-app-status-bar-style" + content="black-translucent" + ></meta> + </Head> + <body> + <Main /> + <NextScript /> + </body> + </Html> + ); +} |