()
| 2 | import { ColorSchemeScript } from '@mantine/core'; |
| 3 | |
| 4 | export default function Document() { |
| 5 | return ( |
| 6 | <Html lang="en"> |
| 7 | <Head> |
| 8 | <link rel="preconnect" href="https://fonts.googleapis.com" /> |
| 9 | <link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="" /> |
| 10 | <link |
| 11 | href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap" |
| 12 | rel="stylesheet" |
| 13 | /> |
| 14 | <ColorSchemeScript defaultColorScheme="auto" localStorageKey="mantine-ui-color-scheme" /> |
| 15 | </Head> |
| 16 | <body> |
| 17 | <Main /> |
| 18 | <NextScript /> |
| 19 | </body> |
| 20 | </Html> |
| 21 | ); |
| 22 | } |
nothing calls this directly
no outgoing calls
no test coverage detected