"use client" import { Search, Settings, Info } from "lucide-react" import { useRouter, usePathname } from "next/navigation" export const Sidebar = () => { const router = useRouter() const pathname = usePathname() const navItems = [ { icon: Search, label: "Search", path: "/" }, { icon: Info, label: "About", path: "/about" }, { icon: Settings, label: "Settings", path: "/settings" }, ] return ( ) }