"use client" import { buttonVariants } from "@/components/ui/button" import { NotificationDot } from "@/app/[domain]/components/notificationDot" import { cn } from "@/lib/utils" import Link from "next/link" import { usePathname } from "next/navigation" import React from "react" export type SidebarNavItem = { href: string hrefRegex?: string title: React.ReactNode isNotificationDotVisible?: boolean } interface SidebarNavProps extends React.HTMLAttributes { items: SidebarNavItem[] } export function SidebarNav({ className, items, ...props }: SidebarNavProps) { const pathname = usePathname() return ( ) }