"use client"; import Link from "next/link"; import { RiCalendarEventFill, RiCompass3Fill, RiQuestionAnswerFill, } from "react-icons/ri"; import { cn } from "@/lib/utils"; import { usePathname } from "next/navigation"; export default function BottomNav() { const pathname = usePathname(); const navigationItems = [ { href: "/explore", name: "explore", icon: RiCompass3Fill, }, { href: "/events", name: "events", icon: RiCalendarEventFill, }, { href: "", name: "messages", icon: RiQuestionAnswerFill, }, ]; return ( ); }