"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 }, { href: "/memory", label: "Memory", icon: Brain }, { href: "/history", label: "History", icon: Clock }, ] as const; export function BottomNav() { const pathname = usePathname(); return ( ); }