diff --git a/Gero b/Gero new file mode 100644 index 00000000..ce568c7e --- /dev/null +++ b/Gero @@ -0,0 +1,33 @@ +import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" +import { DollarSign, Users, ShoppingCart, TrendingUp } from 'lucide-react' + +const metrics = [ + { name: 'Total Revenue', value: '$54,000', icon: DollarSign, change: '+14%' }, + { name: 'New Customers', value: '487', icon: Users, change: '+7%' }, + { name: 'Total Sales', value: '2,350', icon: ShoppingCart, change: '+17%' }, + { name: 'Conversion Rate', value: '3.24%', icon: TrendingUp, change: '+2.5%' }, +] + +export default function KeyMetrics() { + return ( + + + Key Metrics + Quick snapshot of business performance + + +
+ {metrics.map((metric) => ( + + + +

{metric.name}

+

{metric.value}

+

+ {metric.change} +

+
+
+ ))} +
+