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