Files
formbricks/apps/web/app/layout.tsx
T
Johannes 50407498ec feat: Formbricks App Redesign (#2581)
Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
Co-authored-by: pandeymangg <anshuman.pandey9999@gmail.com>
2024-05-09 15:30:44 +00:00

22 lines
574 B
TypeScript

import { SpeedInsights } from "@vercel/speed-insights/next";
import { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: {
template: "%s | Formbricks",
default: "Formbricks",
},
description: "Open-Source Survey Suite",
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
{process.env.VERCEL === "1" && <SpeedInsights sampleRate={0.1} />}
<body className="flex h-dvh flex-col transition-all ease-in-out">{children}</body>
</html>
);
}