"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { FlaskConical, GalleryVerticalEnd, LayoutGrid, Newspaper, Radar } from "lucide-react"; const LINKS = [ { href: "/pipeline", label: "Pipeline", icon: LayoutGrid }, { href: "/briefing", label: "Briefing", icon: Newspaper }, { href: "/testbench", label: "Test Bench", icon: FlaskConical }, { href: "/gallery", label: "Gallery", icon: GalleryVerticalEnd }, ]; export default function TopNav() { const pathname = usePathname(); return (