Files
formbricks/apps/web/app/layout.tsx
Johannes b5928e71e5 Add Best Practices to Landingpage (#281)
* Update landingpage
2023-05-12 14:25:17 +02:00

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>
);
}