'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { cn } from '@/lib/cn'; interface NavItem { label: string; href: string; icon: string; } const navItems: NavItem[] = [ { label: 'Chat', href: '/chat', icon: '💬' }, { label: 'Tasks', href: '/tasks', icon: '📋' }, { label: 'Projects', href: '/projects', icon: '📁' }, { label: 'Settings', href: '/settings', icon: '⚙️' }, ]; export function Sidebar(): React.ReactElement { const pathname = usePathname(); return ( ); }