Files
formbricks/apps/web/app/layout.tsx
T
2026-03-23 12:35:29 +00:00

46 lines
1.3 KiB
TypeScript

import { Metadata } from "next";
import React from "react";
import { NoScriptWarning } from "@/app/components/NoScriptWarning";
import { SentryProvider } from "@/app/sentry/SentryProvider";
import {
DEFAULT_LOCALE,
IS_PRODUCTION,
SENTRY_DSN,
SENTRY_ENVIRONMENT,
SENTRY_RELEASE,
} from "@/lib/constants";
import { I18nProvider } from "@/lingodotdev/client";
import { getLocale } from "@/lingodotdev/language";
import "../modules/ui/globals.css";
export const metadata: Metadata = {
title: {
template: "%s | Formbricks",
default: "Formbricks",
},
description: "Open-Source Survey Suite",
};
const RootLayout = async ({ children }: { children: React.ReactNode }) => {
const locale = await getLocale();
return (
<html lang={locale} translate="no">
<body className="flex h-dvh flex-col transition-all ease-in-out">
<NoScriptWarning locale={locale} />
<SentryProvider
sentryDsn={SENTRY_DSN}
sentryRelease={SENTRY_RELEASE}
sentryEnvironment={SENTRY_ENVIRONMENT}
isEnabled={IS_PRODUCTION}>
<I18nProvider language={locale} defaultLanguage={DEFAULT_LOCALE}>
{children}
</I18nProvider>
</SentryProvider>
</body>
</html>
);
};
export default RootLayout;