diff --git a/frontend/src/Dashboard.jsx b/frontend/src/Dashboard.jsx index a02bc73..b89871f 100644 --- a/frontend/src/Dashboard.jsx +++ b/frontend/src/Dashboard.jsx @@ -37,20 +37,19 @@ function StatCard({ icon: Icon, color, value, title, subtitle, to }) { function MetricCard({ title, value, icon: Icon, color, description }) { return ( -
-
-
- - - -
-
{value}
-
{title}
+
+
+ + + +
+
+ {value} {title}
+ {description && ( +
{description}
+ )}
- {description && ( -
{description}
- )}
);