mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-06 05:40:02 -06:00
Co-authored-by: Dhruwang <dhruwangjariwala18@gmail.com> Co-authored-by: Matthias Nannt <mail@matthiasnannt.com> Co-authored-by: ShubhamPalriwala <spalriwalau@gmail.com>
14 lines
283 B
TypeScript
14 lines
283 B
TypeScript
import { Head, Html, Main, NextScript } from "next/document";
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html lang="en" className="h-full bg-slate-50">
|
|
<Head />
|
|
<body className="h-full">
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|