import { Providers } from "@/app/providers"; import { Layout } from "@/components/docs/Layout"; import { type Section } from "@/components/docs/SectionProvider"; import glob from "fast-glob"; import { type Metadata } from "next"; export const metadata: Metadata = { title: { template: "%s - Formbricks Docs", default: "Formbricks Docs", }, }; export default async function RootLayout({ children }: { children: React.ReactNode }) { let pages = await glob("**/*.mdx", { cwd: "app/docs" }); let allSectionsEntries = (await Promise.all( pages.map(async (filename) => [ "/docs/" + filename.replace(/(^|\/)page\.mdx$/, ""), (await import(`./${filename}`)).sections, ]) )) as Array<[string, Array
]>; let allSections = Object.fromEntries(allSectionsEntries); return (
{children}
); }