"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { ExternalLink } from "lucide-react" const links = [ { href: "/", label: "Search" }, { href: "/chat", label: "Agent" }, { href: "/docs", label: "API Docs" }, ] export function NavLinks() { const pathname = usePathname() return (