Components
Loading preview...
Here is Sidebar One component
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/sidebar-one
import AppSidebar from "@/components/ui/sidebar-one";
import { SidebarInset, SidebarProvider } from "@/components/blocks/sidebar";
export default function DemoOne() {
return (
<div className="min-w-[900px]">
<SidebarProvider>
<AppSidebar />
<SidebarInset>
<div className="flex flex-1 items-center justify-center p-12 text-sm
text-muted-foreground">
Main content area
</div>
</SidebarInset>
</SidebarProvider>
</div>
);
}