diff options
Diffstat (limited to 'pages/pages/_document.js')
| -rw-r--r-- | pages/pages/_document.js | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/pages/pages/_document.js b/pages/pages/_document.js deleted file mode 100644 index effc121..0000000 --- a/pages/pages/_document.js +++ /dev/null @@ -1,24 +0,0 @@ -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> - ); -} |