"use client"; 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" }, ]; export function Navigation() { const pathname = usePathname(); return ( ); }