mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-04 18:49:39 -06:00
15 lines
345 B
TypeScript
15 lines
345 B
TypeScript
import "./globals.css";
|
|
|
|
export const metadata = {
|
|
title: "Formbricks",
|
|
description: "Open-Source 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>
|
|
);
|
|
}
|