import { cn } from "../lib/utils"; import { ThemeToggle } from "../../components/ui/theme-toggle"; import { ChevronLeft, LayoutGrid, UserPlus } from "lucide-react"; interface NavbarProps { onIdentityClick: () => void; sessionTitle?: string; onBack?: () => void; } export function Navbar({ onIdentityClick, sessionTitle, onBack }: NavbarProps) { return ( ); } export function StatusBadge({ status }: { status: string }) { const colorMap: Record = { active: "bg-status-active/20 text-status-active", running: "bg-status-running/20 text-status-running", idle: "bg-status-idle/20 text-status-idle", inactive: "bg-text-muted/20 text-text-muted", requires_action: "bg-status-warning/20 text-status-warning", archived: "bg-text-muted/20 text-text-muted", error: "bg-status-error/20 text-status-error", }; return ( {status} ); }