MCPcopy Create free account
hub / github.com/mantinedev/ui.mantine.dev / Document

Function Document

pages/_document.tsx:4–22  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2import { ColorSchemeScript } from '@mantine/core';
3
4export 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected