mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-04 18:49:39 -06:00
* added metadata template * created layout file in [survedId] * changed Link to <a> for complete reload of individual survey * added prop types for generateMetadata * added page titles for sub pages * Replaced survey title with Your Surveys * fix layout metadata not working with latest changes to getAnalysisData() * run pnpm format * add new analysis folder for common layout * fix conflicts * add metadata to integrations page --------- Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
19 lines
441 B
TypeScript
19 lines
441 B
TypeScript
import "./globals.css";
|
|
import { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: {
|
|
template: "%s | Formbricks",
|
|
default: "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>
|
|
);
|
|
}
|