Skip to content

Commit 7b2a1be

Browse files
File changes
1 parent adf7bd9 commit 7b2a1be

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

src/pages/PredictiveAnalyticsDashboard.jsx

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -58,41 +58,41 @@ export default function PredictiveAnalyticsDashboard() {
5858

5959
{/* Quick Stats */}
6060
<div className="grid grid-cols-3 gap-4">
61-
<Card className="border-red-200">
61+
<Card className="border-red-200 bg-slate-900 border-slate-800">
6262
<CardContent className="pt-6">
6363
<div className="flex items-center gap-3">
64-
<div className="p-3 bg-red-100 rounded-lg">
65-
<AlertTriangle className="w-6 h-6 text-red-600" />
64+
<div className="p-3 bg-red-100/20 rounded-lg">
65+
<AlertTriangle className="w-6 h-6 text-red-400" />
6666
</div>
6767
<div>
68-
<p className="text-sm text-slate-600">Churn Risk</p>
69-
<p className="text-2xl font-bold text-red-600">Monitor</p>
68+
<p className="text-sm text-slate-400">At-Risk Users</p>
69+
<p className="text-2xl font-bold text-red-400">{atRiskCount}</p>
7070
</div>
7171
</div>
7272
</CardContent>
7373
</Card>
74-
<Card className="border-green-200">
74+
<Card className="border-green-200 bg-slate-900 border-slate-800">
7575
<CardContent className="pt-6">
7676
<div className="flex items-center gap-3">
77-
<div className="p-3 bg-green-100 rounded-lg">
78-
<TrendingUp className="w-6 h-6 text-green-600" />
77+
<div className="p-3 bg-green-100/20 rounded-lg">
78+
<TrendingUp className="w-6 h-6 text-green-400" />
7979
</div>
8080
<div>
81-
<p className="text-sm text-slate-600">Growth Forecast</p>
82-
<p className="text-2xl font-bold text-green-600">Positive</p>
81+
<p className="text-sm text-slate-400">Insights Generated</p>
82+
<p className="text-2xl font-bold text-green-400">{totalInsightsCount}</p>
8383
</div>
8484
</div>
8585
</CardContent>
8686
</Card>
87-
<Card className="border-blue-200">
87+
<Card className="border-blue-200 bg-slate-900 border-slate-800">
8888
<CardContent className="pt-6">
8989
<div className="flex items-center gap-3">
90-
<div className="p-3 bg-blue-100 rounded-lg">
91-
<Lightbulb className="w-6 h-6 text-blue-600" />
90+
<div className="p-3 bg-blue-100/20 rounded-lg">
91+
<Lightbulb className="w-6 h-6 text-blue-400" />
9292
</div>
9393
<div>
94-
<p className="text-sm text-slate-600">AI Insights</p>
95-
<p className="text-2xl font-bold text-blue-600">Active</p>
94+
<p className="text-sm text-slate-400">System Status</p>
95+
<p className="text-2xl font-bold text-blue-400">Active</p>
9696
</div>
9797
</div>
9898
</CardContent>

0 commit comments

Comments
 (0)