"use client"; import { IconCompass, IconHome, IconSettings } from "@tabler/icons-react"; import { motion } from "motion/react"; import Link from "next/link"; import { usePathname } from "next/navigation"; const tabs = [ { href: "/dashboard", label: "Home", icon: IconHome }, { href: "/explore", label: "Explore", icon: IconCompass }, { href: "/settings", label: "Settings", icon: IconSettings }, ] as const; export function MobileTabBar() { const pathname = usePathname(); return ( ); }