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