"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { Package, PlusCircle, Scan, FileDown, Printer } from "lucide-react"; export default function Navigation() { const pathname = usePathname(); const navItems = [ { href: "/", label: "Dashboard", icon: }, { href: "/add", label: "Add / Import", icon: }, { href: "/scan", label: "Scan QR", icon: }, { href: "/print", label: "Print Labels", icon: }, ]; return ( ); }