"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { cn } from "@/lib/utils"; export function MainNav() { const pathname = usePathname(); return ( ); }