| 12345678910111213141516171819 |
- import { Html, Head, Main, NextScript } from "next/document";
- export default function Document() {
- return (
- <Html>
- <Head>
- <link
- rel="stylesheet"
- href="https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap"
- data-ignore="true"
- />
- </Head>
- <body>
- <Main />
- <NextScript />
- </body>
- </Html>
- );
- }
|