MCPcopy Create free account
hub / github.com/blacksmith-eth/blacksmith / Document

Function Document

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

Source from the content-addressed store, hash-verified

1import { Head, Html, Main, NextScript } from "next/document";
2
3export default function Document() {
4 return (
5 <Html lang="en">
6 <Head />
7 <body className="overflow-hidden">
8 <Main />
9 <NextScript />
10 </body>
11 </Html>
12 );
13}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected