import { Link, useLocation } from "react-router"; const navItems = [ { route: "/", label: "Explorer", icon: "home" }, { route: "/status", label: "Status", icon: "notepad" } ]; export function Sidebar() { const location = useLocation(); return ( ); }