diff --git a/src/components/DashboardView.tsx b/src/components/DashboardView.tsx
index 77fe8f7..7547818 100644
--- a/src/components/DashboardView.tsx
+++ b/src/components/DashboardView.tsx
@@ -132,60 +132,7 @@ export default function DashboardView({ searchQuery, tenantId = FIESTA_TENANT_ID
return (
- {/* ── Immersive Executive Banner (cover image + slate→purple gradient overlay) ── */}
-
- {/* Cover image background & decorative glow */}
-
-

-
-
-
-
- {/* Content row */}
-
-
-
- Executive Command Center
-
- Live Core
-
-
-
- Month-to-date order operations for {tenantName}, pulled live from the API.
-
-
-
- {loading ? (
-
- Syncing live data…
-
- ) : errored ? (
-
- Live data unavailable
-
- ) : (
-
- Live · {tenantName}
-
- )}
-
-
-
- {/* Reporting scope panel */}
-
-
-
- {fromdate} → {todate}
-
-
Month-to-date reporting scope
-
-
-
{/* Error hint */}
{errored && (
@@ -202,31 +149,35 @@ export default function DashboardView({ searchQuery, tenantId = FIESTA_TENANT_ID
)}
{/* KPI cards — all live from getordersummary / getinvoiceinsight */}
-
+
{kpis.map((kpi) => {
const Icon = kpi.icon;
return (
{/* Gradient accent bar */}
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+ {kpi.loading ? … : kpi.display}
+
+
+ {kpi.sub}
+
-
- {kpi.title}
-
-
- {kpi.loading ? … : kpi.display}
-
-
- {kpi.sub}
-
);
})}