import Link from "next/link"; import { ArrowLeft } from "lucide-react"; import { Button } from "~/components/ui/button"; import { Logo } from "~/components/branding/logo"; import { LEGAL_LAST_UPDATED } from "~/lib/legal"; type LegalPageShellProps = { title: string; description?: string; children: React.ReactNode; }; export function LegalPageShell({ title, description, children, }: LegalPageShellProps) { return (
{description}
) : null}Last updated {LEGAL_LAST_UPDATED}