import Link from "next/link"; import type { ReactNode } from "react"; import { Logo } from "@/components/Logo"; import { LEGAL_LAST_UPDATED } from "@/lib/legal/constants"; type Props = { title: string; description?: string; children: ReactNode; }; export function LegalPageLayout({ title, description, children }: Props) { return (
← Back to home

Last updated: {LEGAL_LAST_UPDATED}

{title}

{description &&

{description}

}
{children}
); }