"use client" import React from 'react' import Link from "next/link" import { useParams, usePathname, useRouter } from "next/navigation" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" interface SidebarNavProps extends React.HTMLAttributes { items: { href: string title: string }[] disabled?: boolean } export function SidebarNav({ className, items, disabled = false, ...props }: SidebarNavProps) { const pathname = usePathname(); const params = useParams(); const orgId = params.orgId as string; const niceId = params.niceId as string; const resourceId = params.resourceId as string; return ( ) }