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