Recommended
01
Groups and nested levels
An entry is a single link, a labelled group, or a branch nested up to three levels. Arrow keys move down the rail.
<Sidebar
label="Workspace"
items='[
{
"label": "Dashboard",
"href": "/",
"value": "dash",
"icon": "icon-[lucide--gauge]"
},
{
"heading": "Projects",
"items": [
{
"label": "Active",
"href": "/active",
"value": "active",
"badge": "4"
},
{
"label": "Archive",
"value": "archive",
"items": [
{
"label": "2025",
"href": "/a/2025",
"value": "a2025"
},
{
"label": "2024",
"href": "/a/2024",
"value": "a2024"
}
]
}
]
},
{
"heading": "Account",
"items": [
{
"label": "Settings",
"href": "/settings",
"value": "settings",
"icon": "icon-[lucide--settings]"
}
]
}
]'
active="active"
mobileLabel="Sidebar"
drawerTitle="Sidebar example">
<div data-slot="drawer">
<div class="showcase-slot">drawer slot</div>
</div>
</Sidebar>