import { NavLink, useLocation } from "react-router-dom"; import { Cpu } from "lucide-react"; const items = [ { to: "/", label: "Home", key: "home" }, { to: "/console", label: "Console", key: "console" }, { to: "/feed", label: "Feed", key: "feed" }, { to: "/blueprint", label: "Blueprint", key: "blueprint" }, { to: "/journal", label: "Journal", key: "journal" }, ]; export default function Nav() { const { pathname } = useLocation(); return ( ); }