import Link from 'next/link' import { Home, Calendar, List, Gift, Coins, Settings } from 'lucide-react' const navItems = [ { icon: Home, label: 'Dashboard', href: '/' }, { icon: List, label: 'Habits', href: '/habits' }, { icon: Calendar, label: 'Calendar', href: '/calendar' }, { icon: Gift, label: 'Wishlist', href: '/wishlist' }, { icon: Coins, label: 'Coins', href: '/coins' }, ] interface NavigationProps { className?: string isMobile?: boolean } export default function Navigation({ className, isMobile = false }: NavigationProps) { if (isMobile) { return ( ) } return (
) }