"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { cn } from "@/lib/utils"; const links = [ { href: "/landing", label: "Home", icon: "🏠" }, { href: "/dashboard", label: "Dashboard", icon: "🖥️" }, { href: "/episode", label: "Episode", icon: "▶️" }, { href: "/ab", label: "A/B Battle", icon: "⚔️" }, { href: "/retention", label: "Retention", icon: "📈" }, { href: "/memory", label: "Memory", icon: "🧠" }, { href: "/learning", label: "Learning", icon: "📊" }, { href: "/learning-playback",label: "Timeline", icon: "🎬" }, ]; export function Nav() { const pathname = usePathname(); return ( ); }