Files
sign/apps/web/pages/_document.tsx

16 lines
389 B
TypeScript
Raw Normal View History

2022-12-06 14:51:03 +01:00
import { Head, Html, Main, NextScript } from "next/document";
2023-05-06 16:08:21 +10:00
export default function Document() {
2022-12-06 14:51:03 +01:00
return (
2023-04-04 22:02:32 +00:00
<Html className="h-full scroll-smooth bg-gray-100 font-normal antialiased" lang="en">
2022-12-06 14:51:03 +01:00
<Head>
<meta name="color-scheme"></meta>
</Head>
<body className="flex h-full flex-col">
<Main />
<NextScript />
</body>
</Html>
);
}