import { Card, CardContent } from "@/components/ui/card.jsx";
import { Download, Package, Users, TrendingUp } from "lucide-react";
const KpiCard = ({ title, value, subtitle, icon }) => (
{value}
{subtitle}
);
const KpiCards = () => {
const kpis = [
{
title: "Total Downloads",
value: "1.46B+",
subtitle: "Across top 15 extensions",
icon: ,
},
{
title: "Extensions Tracked",
value: "9,538",
subtitle: "Released from 2015–2025",
icon: ,
},
{
title: "Top Publisher",
value: "Microsoft",
subtitle: "12 of top 15 extensions",
icon: ,
},
{
title: "Peak Year",
value: "2020",
subtitle: "1,441 extensions released",
icon: ,
},
];
return (
{kpis.map((kpi) => (
))}
);
};
export default KpiCards;