{title}
Last Updated: {lastUpdated}
Back to Home{children}
import { ReactNode } from 'react'; import { Link } from 'react-router-dom'; interface LegalLayoutProps { title: string; lastUpdated: string; children: ReactNode; } export function LegalLayout({ title, lastUpdated, children }: LegalLayoutProps) { return (
Last Updated: {lastUpdated}
Back to Home