import { NavLink } from "react-router-dom"; const NAV_ITEMS = [ { label: "Chat", to: "/chat" }, { label: "Trace", to: "/trace" }, { label: "Replay", to: "/replay" }, { label: "Demos", to: "/demos" }, { label: "Proposals", to: "/proposals" }, { label: "Evals", to: "/evals" }, { label: "Calibration", to: "/calibration" }, { label: "Runs", to: "/runs" }, { label: "Packs", to: "/packs" }, { label: "Vault", to: "/vault" }, { label: "Audit", to: "/audit" }, { label: "Settings", to: "/settings" }, ] as const; export function LeftNav() { return ( ); }