"use client"; import React from "react"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { cn } from "@app/lib/cn"; interface TopbarNavProps extends React.HTMLAttributes { items: { href: string; title: string; icon: React.ReactNode; }[]; disabled?: boolean; orgId?: string; } export function TopbarNav({ className, items, disabled = false, orgId, ...props }: TopbarNavProps) { const pathname = usePathname(); return ( ); }