website-2/pages/_document.tsx

13 lines
259 B
TypeScript
Raw Permalink Normal View History

import { Html, Head, Main, NextScript } from 'next/document'
export default function Document() {
return (
<Html>
<Head />
<body className="dark:bg-black bg-white">
<Main />
<NextScript />
</body>
</Html>
)
}