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