"use client"; import { useState } from "react"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { cn } from "@/lib/utils"; const navItems = [ { label: "Dashboard", href: "/" }, { label: "Receive", href: "/receive" }, { label: "Send", href: "/send" }, { label: "Transfer", href: "/transfer" }, { label: "Approvals", href: "/approvals" }, { label: "Activity", href: "/activity" }, { label: "Settings", href: "/settings" }, ]; function NavLink({ href, label, isActive, onNavigate, }: { href: string; label: string; isActive: boolean; onNavigate?: () => void; }) { return ( {label} ); } export function Navigation() { const pathname = usePathname(); const [mobileOpen, setMobileOpen] = useState(false); const closeMobile = () => setMobileOpen(false); return ( ); }