"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { Home, MapPin, Info, Waves } from "lucide-react"; import { cn } from "@/lib/utils"; const tabs = [ { name: "Accueil", href: "/accueil", icon: Home, }, { name: "Explorer", href: "/explorer", icon: MapPin, }, { name: "Mana", href: "/mana-tracker", icon: Waves, }, { name: "Infos", href: "/infos", icon: Info, }, ]; export default function TabNavigation() { const pathname = usePathname(); return ( ); }