"use client"; import Link from "next/link"; import Image from "next/image"; import { usePathname } from "next/navigation"; const navItems = [ { icon: "target", label: "Mission", href: "/mission" }, { icon: "group", label: "Agents", href: "/agents" }, { icon: "psychology", label: "Intelligence", href: "/intelligence" }, { icon: "hub", label: "Knowledge Base", href: "/knowledge-base" }, { icon: "terminal", label: "System Logs", href: "/logs" }, ]; const activityItems = [ { icon: "video_camera_front", label: "Meetings", href: "/meetings" }, { icon: "bug_report", label: "Jira Tickets", href: "/jira" }, { icon: "chat", label: "Chat History", href: "/chats" }, ]; export default function Sidebar() { const pathname = usePathname(); return ( ); }