"use client" 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) { return ( ) }