fix and update language for company workspace

This commit is contained in:
root
2026-05-11 23:40:40 -04:00
committed by Administrator
parent 193aeae834
commit 1a39aa8433
43 changed files with 5034 additions and 802 deletions
@@ -4,6 +4,7 @@ interface StatCardProps {
title: string
value: string | number
change?: number
vsLastMonthLabel?: string
icon: LucideIcon
iconColor?: string
iconBg?: string
@@ -13,6 +14,7 @@ export default function StatCard({
title,
value,
change,
vsLastMonthLabel = 'vs last month',
icon: Icon,
iconColor = 'text-blue-600',
iconBg = 'bg-blue-50',
@@ -36,7 +38,7 @@ export default function StatCard({
>
{isPositive ? '+' : ''}{change.toFixed(1)}%
</span>
<span className="text-xs text-slate-400">vs last month</span>
<span className="text-xs text-slate-400">{vsLastMonthLabel}</span>
</div>
)}
</div>