This component no longer exists. It was in shadcn/ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-05 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Sidebar 02
agentmesh/sidebar-02RemovedBlock
A sidebar with collapsible sections.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/ombhanushaliii/agentmesh/main/example/ui/apps/v4/public/r/styles/base-vega/sidebar-02.jsonSource
1import { AppSidebar } from "@/registry/base-vega/blocks/sidebar-02/components/app-sidebar"2import {3 Breadcrumb,4 BreadcrumbItem,5 BreadcrumbLink,6 BreadcrumbList,7 BreadcrumbPage,8 BreadcrumbSeparator,9} from "@/registry/base-vega/ui/breadcrumb"10import { Separator } from "@/registry/base-vega/ui/separator"11import {12 SidebarInset,13 SidebarProvider,14 SidebarTrigger,15} from "@/registry/base-vega/ui/sidebar"1617export default function Page() {18 return (19 <SidebarProvider>20 <AppSidebar />21 <SidebarInset>22 <header className="sticky top-0 flex h-16 shrink-0 items-center gap-2 border-b bg-background px-4">23 <SidebarTrigger className="-ml-1" />24 <Separator25 orientation="vertical"26 className="mr-2 data-vertical:h-4 data-vertical:self-auto"27 />28 <Breadcrumb>29 <BreadcrumbList>30 <BreadcrumbItem className="hidden md:block">31 <BreadcrumbLink href="#">Build Your Application</BreadcrumbLink>32 </BreadcrumbItem>33 <BreadcrumbSeparator className="hidden md:block" />34 <BreadcrumbItem>35 <BreadcrumbPage>Data Fetching</BreadcrumbPage>36 </BreadcrumbItem>37 </BreadcrumbList>38 </Breadcrumb>39 </header>40 <div className="flex flex-1 flex-col gap-4 p-4">41 {Array.from({ length: 24 }).map((_, index) => (42 <div43 key={index}44 className="aspect-video h-12 w-full rounded-lg bg-muted/50"45 />46 ))}47 </div>48 </SidebarInset>49 </SidebarProvider>50 )51}
What it pulls in
Other registry items
