import Link from "next/link"; import { RiHome6Fill, RiCompassLine, RiCompass3Fill, RiQuestionAnswerLine, RiAddFill, RiSettings4Fill, RiSettings4Line, } from "react-icons/ri"; import { HiOutlineLightningBolt } from "react-icons/hi"; import { cn } from "@/lib/utils"; import { Button } from "@/components/ui/button"; export default function Sidebar() { const navigation = [ { href: "", name: "home", label: "Home", icon: RiHome6Fill, current: true, }, { href: "", name: "explore", label: "Explore", icon: RiCompassLine, current: false, }, { href: "", name: "messages", label: "Messages", icon: RiQuestionAnswerLine, current: false, }, { href: "", name: "zap", label: "Zap Flockstr", icon: HiOutlineLightningBolt, current: false, }, ]; return ( ); }