import { cn } from '@/lib/utils' import { buttonVariants } from '../../ui/button' import { $router, Link } from '../../router' import { useStore } from '@nanostores/react' import React from 'react' interface SidebarNavProps extends React.HTMLAttributes { items: { href: string title: string icon?: React.FC> }[] } export function SidebarNav({ className, items, ...props }: SidebarNavProps) { const page = useStore($router) return ( ) }