Stat Cards 02
Stat Cards 02 is a React and Tailwind CSS card component from Bund UI, licensed MIT. Copy it and paste it into your project.
Bund UI
MIT
cards
What it is
Stat Cards 02 is a React and Tailwind CSS card component from Bund UI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
No packages beyond the project baseline
Licence
This component comes from Bund UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Stat Cards 02
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import { Progress } from "@/components/ui/progress";
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip";
const pipelineData = [
{
id: "lead",
name: "Lead",
count: 235,
value: 420500,
color: "bg-[var(--chart-1)]"
},
{
id: "qualified",
name: "Qualified",
count: 146,
value: 267800,
color: "bg-[var(--chart-2)]"
},
{
id: "proposal",
name: "Proposal",
count: 84,
value: 192400,
color: "bg-[var(--chart-3)]"
},
{
id: "negotiation",
name: "Negotiation",
count: 52,
value: 129600,
color: "bg-[var(--chart-4)]"
},
{
id: "closed",
name: "Closed Won",
count: 36,
value: 87200,
color: "bg-[var(--chart-5)]"
}
];
const totalValue = pipelineData.reduce((sum, stage) => sum + stage.value, 0);
const totalCount = pipelineData.reduce((sum, stage) => sum + stage.count, 0);
export default function CardStat() {
return (
<div className="mx-auto p-4 md:w-[400px] lg:py-10">
<Card>
<CardHeader>
<CardTitle>Sales Pipeline</CardTitle>
<CardDescription>Current deals in your sales pipeline.</CardDescription>
</CardHeader>
<CardContent>
<TooltipProvider>
<div className="mb-6 flex h-4 w-full overflow-hidden rounded-full">
{pipelineData.map((stage) => (
<Tooltip key={stage.id}>
<TooltipTrigger asChild>
<div
className={`${stage.color} h-full`}
style={{ width: `${(stage.value / totalValue) * 100}%` }}></div>
</TooltipTrigger>
<TooltipContent>
<div className="mb-1 text-sm font-medium">{stage.name}</div>
<div className="text-xs opacity-80">{stage.count} deals</div>
<div className="text-xs opacity-80">${stage.value.toLocaleString()}</div>
</TooltipContent>
</Tooltip>
))}
</div>
</TooltipProvider>
<div className="space-y-4">
{pipelineData.map((stage) => (
<div key={stage.id} className="flex items-center gap-4">
<div className={`h-3 w-3 rounded-full ${stage.color}`}></div>
<div className="flex flex-1 items-center justify-between">
<div>
<p className="text-sm font-medium">{stage.name}</p>
<p className="text-muted-foreground text-xs">
{stage.count} deals ยท ${stage.value.toLocaleString()}
</p>
</div>
<div className="flex w-24 items-center gap-2">
<Progress
value={(stage.count / totalCount) * 100}
className="h-2"
indicatorColor={stage.color}
/>
<span className="text-muted-foreground w-10 text-right text-xs">
{Math.round((stage.value / totalValue) * 100)}%
</span>
</div>
</div>
</div>
))}
</div>
</CardContent>
</Card>
</div>
);
}