// Shared wrapper for the static legal pages (/privacy, /cookies, /terms, // /returns) so they stay visually identical and each page file is just content. export default function LegalPage({ tag, title, lastUpdated, children, }: { tag: string; title: string; lastUpdated: string; children: React.ReactNode; }) { return (

{tag}

{title}

Last updated: {lastUpdated}

{children}
); }