"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; const tabs = [ { href: "/dashboard", label: "Dashboard", icon: ( ), }, { href: "/plans", label: "Plans", icon: ( ), }, { href: "/preferences", label: "Prefs", icon: ( ), }, { href: "/rules", label: "Rules", icon: ( ), }, { href: "/history", label: "History", icon: ( ), }, ]; export function BottomNav() { const pathname = usePathname(); return ( ); }