'use client'; import { Smartphone, Package, History, Settings, Shield, LogOut } from 'lucide-react'; import { useRouter, usePathname } from 'next/navigation'; import { clsx, type ClassValue } from 'clsx'; import { twMerge } from 'tailwind-merge'; function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); } interface BottomNavProps { currentUser: any; } export default function BottomNav({ currentUser }: BottomNavProps) { const router = useRouter(); const pathname = usePathname(); const isHome = pathname === '/'; const isInventory = pathname === '/inventory'; const isLogs = pathname === '/logs'; const isAdmin = pathname === '/admin'; return ( ); }