mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
14 lines
302 B
TypeScript
14 lines
302 B
TypeScript
import { Head, Html, Main, NextScript } from "next/document";
|
|
|
|
export default function Document(): React.JSX.Element {
|
|
return (
|
|
<Html lang="en" className="h-full bg-slate-50">
|
|
<Head />
|
|
<body className="h-full">
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|