'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' import { signOut } from 'next-auth/react' import { cn } from '@/lib/utils' import { LayoutDashboard, Building2, MessageSquare, AlertTriangle, BarChart3, LogOut, } from 'lucide-react' const navItems = [ { href: '/dashboard', label: 'Dashboard', icon: LayoutDashboard }, { href: '/dashboard/clients', label: 'Clients', icon: Building2 }, { href: '/dashboard/sms', label: 'SMS Queue', icon: MessageSquare }, { href: '/dashboard/sms/failed', label: 'Failed SMS', icon: AlertTriangle }, { href: '/dashboard/reports', label: 'Reports', icon: BarChart3 }, ] export function Sidebar() { const pathname = usePathname() return ( ) }