piplene page

This commit is contained in:
Mayur Shinde
2026-07-27 14:32:08 +05:30
parent f380c7d465
commit 190ef5f58e
4 changed files with 668 additions and 0 deletions
+2
View File
@@ -23,6 +23,7 @@ import { RealtimeProvider } from "@/lib/realtime";
import { SmartGallery } from "./smart-gallery";
import { Leads } from "./leads";
import { Verify } from "./verify";
import { Pipeline } from "./pipeline";
import "../../app/dashboard/dashboard.css";
export function Dashboard() {
@@ -87,6 +88,7 @@ export function Dashboard() {
: active === "gallery" ? <SmartGallery theme={theme} />
: active === "leads" ? <Leads />
: active === "verify" ? <Verify />
: active === "pipeline" ? <Pipeline />
: active === "team" ? <TeamManagement />
: <ComingSoon title={title} icon={item?.icon ?? "dashboard"} onGo={setActive} />}
</ToastProvider>