'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { cn } from '@/lib/utils'; import { LayoutDashboard, ListTodo, Flame, NotebookPen, CalendarDays, MoreHorizontal, } from 'lucide-react'; const bottomNavItems = [ { href: '/tasks', label: 'Tasks', icon: ListTodo }, { href: '/habits', label: 'Habits', icon: Flame }, { href: '/dashboard', label: 'Dashboard', icon: LayoutDashboard }, { href: '/notes', label: 'Notes', icon: NotebookPen }, { href: '/calendar', label: 'Calendar', icon: CalendarDays }, { href: '/more', label: 'More', icon: MoreHorizontal }, ]; export function MobileBottomNav() { const pathname = usePathname(); return ( ); }