import { Outlet, NavLink } from 'react-router-dom'; import { LayoutDashboard, Send, Download, History, Settings, Lock, Wifi, WifiOff, } from 'lucide-react'; import { useWalletStore } from '../store/wallet'; const navItems = [ { to: '/dashboard', label: 'Dashboard', icon: LayoutDashboard }, { to: '/send', label: 'Send', icon: Send }, { to: '/receive', label: 'Receive', icon: Download }, { to: '/history', label: 'History', icon: History }, { to: '/settings', label: 'Settings', icon: Settings }, ]; export default function Layout() { const { lockWallet, networkStatus, balance } = useWalletStore(); const handleLock = async () => { await lockWallet(); }; return (
{/* Sidebar */} {/* Main content */}
); }