"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { cn } from "@/lib/utils"; export default function SidebarItem({ name, logo, path, className, }: { name: string; logo: React.ReactNode; path: string; className?: string; }) { const currentPath = usePathname(); return (