https://altly.madebydanny.uk
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 15 lines 425 B view raw
1import { Card } from "@/components/ui/card"; 2 3interface StatsCardProps { 4 label: string; 5 value: string | number; 6} 7 8export const StatsCard = ({ label, value }: StatsCardProps) => { 9 return ( 10 <Card className="bg-stat-card border-border/50 p-6 text-center"> 11 <div className="text-sm text-muted-foreground mb-2">{label}</div> 12 <div className="text-3xl font-bold text-primary">{value}</div> 13 </Card> 14 ); 15};