import { HomeLayout } from "fumadocs-ui/layouts/home"; import { DocsBody } from "fumadocs-ui/page"; import type { ReactNode } from "react"; import { SiteFooter } from "@/components/site-footer"; import { baseOptions } from "@/lib/layout.shared"; type LegalPageProps = { title: string; description?: string; children: ReactNode; }; export function LegalPage({ title, description, children }: LegalPageProps) { return (

{title}

{description ? (

{description}

) : null}
{children}
); }