"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { PAGES_NEW } from "@/lib/docs" import { cn } from "@/lib/utils" import { Button } from "@/registry/new-york-v4/ui/button" export function MainNav({ items, className, ...props }: React.ComponentProps<"nav"> & { items: { href: string; label: string }[] }) { const pathname = usePathname() return ( ) }