MCPcopy Create free account
hub / github.com/agentsmd/agents.md / Document

Function Document

pages/_document.tsx:3–24  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1import { Html, Head, Main, NextScript } from "next/document";
2
3export default function Document() {
4 return (
5 <Html lang="en">
6 <Head>
7 <link
8 rel="icon"
9 href="/favicon-light.png"
10 media="(prefers-color-scheme: light)"
11 />
12 <link
13 rel="icon"
14 href="/favicon-dark.png"
15 media="(prefers-color-scheme: dark)"
16 />
17 </Head>
18 <body className="antialiased">
19 <Main />
20 <NextScript />
21 </body>
22 </Html>
23 );
24}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected