"use client"; import { usePathname } from "next/navigation"; import Link from "next/link"; import { Activity, Brain, Clock } from "lucide-react"; const TABS = [ { href: "/", label: "Pulse", icon: Activity, color: "#f59e0b" }, { href: "/memory", label: "Memory", icon: Brain, color: "#38bdf8" }, { href: "/history", label: "History", icon: Clock, color: "#22c55e" }, ] as const; export function BottomNav() { const pathname = usePathname(); return ( ); }