Last updated: {LEGAL_LAST_UPDATED}
{title}
{description &&{description}
}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 (
Last updated: {LEGAL_LAST_UPDATED}
{description}
}