"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { LayoutDashboard, Database, Workflow, ScrollText, } from "lucide-react"; import { cn } from "@/lib/utils"; const NAV = [ { href: "/", label: "Dashboard", icon: LayoutDashboard }, { href: "/connections", label: "Connections", icon: Database }, { href: "/pipelines", label: "Pipelines", icon: Workflow }, { href: "/runs", label: "Runs", icon: ScrollText }, ]; export function AppSidebar() { const pathname = usePathname(); return ( ); }