import React from 'react'; interface SidebarProps { currentPage: string; onNavigate: (page: any) => void; } const nav = [ { id: 'dashboard', label: 'Home' }, { id: 'voice', label: 'Voice AI' }, { id: 'send', label: 'Send' }, { id: 'scan', label: 'Scan & Pay' }, { id: 'contacts', label: 'Contacts' }, { id: 'history', label: 'Transactions' }, { id: 'security', label: 'Security' }, { id: 'settings', label: 'Settings' }, ]; export default function Sidebar({ currentPage, onNavigate }: SidebarProps) { return ( ); }