gemini-codrawing / pages /_document.js
Trudy's picture
first commit
eceac5b
raw
history blame contribute delete
257 Bytes
import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html lang="en">
<Head />
<body className="antialiased">
<Main />
<NextScript />
</body>
</Html>
);
}