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