import Link from 'next/link'; export default function AccountLayout({ children, }: { children: React.ReactNode; }) { return (
{/* Simple navbar with back button */} {/* Main content */}
{children}
); }