'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' import { LayoutDashboard, Plug, Wrench, Key, BarChart3, Settings, LogOut, ExternalLink } from 'lucide-react' import { cn } from '@/lib/utils' const navItems = [ { href: '/', icon: LayoutDashboard, label: 'Dashboard' }, { href: '/apps', icon: Plug, label: 'Apps' }, { href: '/tools', icon: Wrench, label: 'Tools' }, ] const configItems = [ { href: '/api-keys', icon: Key, label: 'API Keys' }, { href: '/analytics', icon: BarChart3, label: 'Analytics' }, { href: '/settings', icon: Settings, label: 'Settings' }, ] export function Sidebar({ integrationCount = 0 }: { integrationCount?: number }) { const pathname = usePathname() return ( ) }