Sidebar Nav

Collapsible sidebar navigation with smooth transitions.

Installation & Usage

tsx
import { SidebarNav } from "@/components/ui/sidebar-nav"

export function SidebarNavDemo() {
  return (
    <div style={{ height: '400px' }}>
      <SidebarNav />
    </div>
  )
}