mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 02:10:12 -06:00
16 lines
298 B
TypeScript
16 lines
298 B
TypeScript
import { Head, Html, Main, NextScript } from "next/document";
|
|
|
|
const Document = () => {
|
|
return (
|
|
<Html lang="en" className="h-full bg-slate-50">
|
|
<Head />
|
|
<body className="h-full">
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
};
|
|
|
|
export default Document;
|