aboutsummaryrefslogtreecommitdiffstats
path: root/pages/_document.js
diff options
context:
space:
mode:
authorJeff Kleinaitis <jeffkleinaitis@gmail.com>2024-04-09 12:16:47 -0700
committerGitHub <noreply@github.com>2024-04-09 12:16:47 -0700
commit88a12c89a3a58dc2f9780da64964b107bcafc62e (patch)
tree0e46eef49b12dcf07c3611cdcf018134724fc86d /pages/_document.js
parent2374eae054935dd49adf3f0e29e8bea0876288f4 (diff)
parent85daf2a12a714dc51fb4c320bf508daf8127c125 (diff)
Merge pull request #20 from digadoo/develop
remove NextJS from project
Diffstat (limited to 'pages/_document.js')
-rw-r--r--pages/_document.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/pages/_document.js b/pages/_document.js
deleted file mode 100644
index fef2049..0000000
--- a/pages/_document.js
+++ /dev/null
@@ -1,23 +0,0 @@
-import Document, { Html, Head, Main, NextScript } from "next/document";
-import Link from "next/link";
-
-class MyDocument extends Document {
- render() {
- return (
- <Html>
- <Head>
- <Link
- href="https://fonts.googleapis.com/css2?family=Inter:wght@400..700&display=swap"
- rel="stylesheet"
- />
- </Head>
- <body>
- <Main />
- <NextScript />
- </body>
- </Html>
- );
- }
-}
-
-export default MyDocument;