"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { LayoutDashboard, Wine, FlaskConical, GlassWater } from "lucide-react" import { cn } from "@/lib/utils" import { MoreMenu } from "./more-menu" const primaryItems = [ { href: "/dashboard", label: "Home", icon: LayoutDashboard }, { href: "/drinks", label: "Drinks", icon: Wine }, { href: "/bar", label: "Bar", icon: FlaskConical }, { href: "/bartender", label: "Mix", icon: GlassWater }, ] export function BottomNav() { const pathname = usePathname() return ( ) }