aboutsummaryrefslogtreecommitdiffstats
path: root/pages/_document.js
diff options
context:
space:
mode:
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;