A collapsible vertical sidebar navigation that expands and collapses between icon-only and labelled states, with nested collapsible menu groups.
import Sidenavbar from "@/components/ui/sidebar-navbar"; export default function SidebarNavbarDemo() { return ( <div className="h-[420px] w-full overflow-hidden rounded-lg border bg-background text-foreground"> <Sidenavbar defaultOpen /> </div> ); }