'use client'; import { usePathname } from 'next/navigation'; import Link from 'next/link'; import { LayoutDashboard, Boxes, ShoppingCart, UtensilsCrossed, Sparkles, Settings, Heart, LogOut, } from 'lucide-react'; import { toast } from 'sonner'; export function Navbar() { const pathname = usePathname(); const navLinks = [ { href: '/dashboard', label: 'Übersicht', icon: LayoutDashboard }, { href: '/inventory', label: 'Vorrat', icon: Boxes }, { href: '/shopping', label: 'Einkauf', icon: ShoppingCart }, { href: '/recipes', label: 'Rezepte', icon: UtensilsCrossed }, { href: '/ai-assistant', label: 'KI-Küche', icon: Sparkles }, ]; const handleLogout = () => { document.cookie = 'kitchenstock_user=; path=/; max-age=0;'; toast.info('Abgemeldet'); window.location.href = '/login'; }; return ( <> {/* Top Header - Desktop & Tablet */} {/* Logo & Household Badge */} 🌱 KitchenStock Amy & Mandys Küche {/* Desktop Navigation Pills */} {navLinks.map(link => { const Icon = link.icon; const isActive = pathname === link.href; return ( {link.label} ); })} {/* Right Actions */} 🌱 100% Vegan {/* Mobile Bottom Navigation Bar */} {navLinks.slice(0, 4).map(link => { const Icon = link.icon; const isActive = pathname === link.href; return ( {link.label} ); })} > ); }