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 */} + + + + +
+ + + + ); +}