mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-11 09:09:41 -06:00
15 lines
333 B
TypeScript
15 lines
333 B
TypeScript
import "./globals.css";
|
|
|
|
export const metadata = {
|
|
title: "Formbricks",
|
|
description: "In-Product Survey Platform",
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="flex h-screen flex-col bg-slate-50">{children}</body>
|
|
</html>
|
|
);
|
|
}
|