mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-29 12:52:13 +01:00
14 lines
293 B
TypeScript
14 lines
293 B
TypeScript
import { Html, Head, Main, NextScript } from "next/document";
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html lang="en" style={{ scrollBehavior: "smooth" }}>
|
|
<Head />
|
|
<body className="theme-dark">
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|