Components
Loading preview...
here is Dashboard components
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/dashboard import { AppShell } from "@/components/ui/appshell";
import { Dashboard } from "@/components/ui/dashboard";
export default function AppShellDemo() {
return (
<AppShell currentPage={{ title: "Dashboard" }}>
<Dashboard />
</AppShell>
);
}