Merge pull request 'feat(pipeline): Pipeline kanban board + full-page lead detail with Move Stage' (#36) from feat/pipeline into goutamnextflow

Reviewed-on: #36
This commit was merged in pull request #36.
This commit is contained in:
2026-07-29 08:39:51 +00:00
5 changed files with 1075 additions and 0 deletions
+2
View File
@@ -24,6 +24,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() {
@@ -88,6 +89,7 @@ export function Dashboard() {
: active === "gallery" ? <SmartGallery theme={theme} />
: active === "leads" ? <Leads />
: active === "verify" ? <Verify />
: active === "pipeline" ? <Pipeline />
: active === "team" ? <TeamManagement />
: active === "projects" ? <Projects />
: <ComingSoon title={title} icon={item?.icon ?? "dashboard"} onGo={setActive} />}