"use client"; import { Home, Search, Library } from "lucide-react"; import Link from "next/link"; import { usePathname } from "next/navigation"; export default function MobileNav() { const pathname = usePathname(); const isActive = (path: string) => pathname === path; return (