Grouped sidebar menu with section labels, icon rows, optional counters, and a muted active state.
Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.
import { Nav14 } from "@/components/beste/piece/nav14";
<Nav14
groups={[
{
"label": "Workspace",
"items": [
{
"label": "Home",
"icon": "home",
"active": true
},
{
"label": "Projects",
"icon": "kanban",
"count": 4
},
{
"label": "Team",
"icon": "users"
}
]
},
{
"label": "Admin",
"items": [
{
"label": "Analytics",
"icon": "chart"
},
{
"label": "Settings",
"icon": "settings"
}
]
}
]}
/>