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 (
Aethel Bot Logo

{title}

Last Updated: {lastUpdated}

Back to Home
{children}
); } export default LegalLayout;