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