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.
dashboard-01
accelya-ui-lib/dashboard-01RemovedBlock
A dashboard with sidebar, charts and data table.
Install it
npx shadcn@latest add https://raw.githubusercontent.com/ramsaoji/Accelya-UI-Lib/main/public/r/styles/default/dashboard-01.jsonSource
1import { AppSidebar } from "@/registry/default/blocks/dashboard-01/components/app-sidebar"2import { ChartAreaInteractive } from "@/registry/default/blocks/dashboard-01/components/chart-area-interactive"3import { DataTable } from "@/registry/default/blocks/dashboard-01/components/data-table"4import { SectionCards } from "@/registry/default/blocks/dashboard-01/components/section-cards"5import { SiteHeader } from "@/registry/default/blocks/dashboard-01/components/site-header"6import { SidebarInset, SidebarProvider } from "@/registry/default/ui/sidebar"78import data from "./data.json"910export default function Page() {11 return (12 <SidebarProvider>13 <AppSidebar variant="inset" />14 <SidebarInset>15 <SiteHeader />16 <div className="flex flex-1 flex-col">17 <div className="@container/main flex flex-1 flex-col gap-2">18 <div className="flex flex-col gap-4 py-4 md:gap-6 md:py-6">19 <SectionCards />20 <div className="px-4 lg:px-6">21 <ChartAreaInteractive />22 </div>23 <DataTable data={data} />24 </div>25 </div>26 </div>27 </SidebarInset>28 </SidebarProvider>29 )30}
What it pulls in
npm packages
Other registry items
