From 630dc2398cc141916e8d5adf5290e39c6cf0cee6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Quiroz?= Date: Fri, 30 Sep 2022 10:27:47 -0300 Subject: [PATCH] chore: update _document --- src/pages/_document.tsx | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/pages/_document.tsx diff --git a/src/pages/_document.tsx b/src/pages/_document.tsx new file mode 100644 index 0000000000..9a0ff9aa9e --- /dev/null +++ b/src/pages/_document.tsx @@ -0,0 +1,29 @@ +import { Html, Head, Main, NextScript } from 'next/document'; + +export default function Document() { + return ( + + + {/* fonts are being loaded here to enable optimization (https://nextjs.org/docs/basic-features/font-optimization) */} + {/* JetBrains Mono */} + + + + + {/* Inter */} + + + + +
+ + + + ); +}