"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { BrandIcon } from "@/components/brand/brand-icon"; import { NAV_GROUPS } from "@/lib/nav"; import { cn } from "@/lib/utils"; interface SidebarProps { open: boolean; onClose: () => void; } export function Sidebar({ open, onClose }: SidebarProps) { const pathname = usePathname(); return ( <>
> ); }