import { NavLink } from "react-router-dom"; const navLinks = [ { to: "/dashboard", label: "Dashboard", icon: "grid" }, { to: "/", label: "Inbox", icon: "inbox" }, { to: "/replay", label: "Conversation Replay", icon: "play" }, { to: "/review", label: "Agents & Tools", icon: "cpu" }, ]; function getIcon(name: string) { switch (name) { case "grid": return ; case "inbox": return ; case "play": return ; case "cpu": return ; default: return null; } } export function NavBar() { return ( ); }