import { Link, useLocation } from "react-router-dom"; import { BookOpen } from "lucide-react"; import { cn } from "@/lib/utils"; const Navigation = () => { const location = useLocation(); const navItems = [ { name: "Index", path: "/index" }, { name: "Themes", path: "/themes" }, { name: "About", path: "/about" } ]; return ( ); }; export default Navigation;