import Link from "next/link"; import { RiHome6Fill, RiCompass3Fill, RiQuestionAnswerFill, } from "react-icons/ri"; import { cn } from "@/lib/utils"; export default function BottomNav() { const navigationItems = [ { href: "/app", name: "home", icon: RiHome6Fill, current: true, }, { href: "", name: "explore", icon: RiCompass3Fill, current: false, }, { href: "", name: "messages", icon: RiQuestionAnswerFill, current: false, }, ]; return ( ); }