"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" interface SidebarNavProps extends React.HTMLAttributes { items: { href: string title: string }[] } export function SidebarNav({ className, items, ...props }: SidebarNavProps) { const pathname = usePathname() return ( ) }