import { NavLink } from 'react-router-dom'; import { LayoutDashboard, Wallet, CreditCard, MoreHorizontal } from 'lucide-react'; import { clsx } from '../../lib/utils'; const navItems = [ { to: '/', icon: LayoutDashboard, label: 'Dashboard' }, { to: '/buckets', icon: Wallet, label: 'Buckets' }, { to: '/debts', icon: CreditCard, label: 'Debts' }, { to: '/more', icon: MoreHorizontal, label: 'More' }, ]; export function BottomNav() { return ( ); }