"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; interface NavItem { name: string; href: string; icon: string; } interface SidebarProps { items: NavItem[]; projectName: string; } export function Sidebar({ items, projectName }: SidebarProps) { const pathname = usePathname(); return ( ); }