cfahlgren1's picture
cfahlgren1 HF staff
fix light mode
b975792
raw
history blame
232 Bytes
import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}