Components
Loading preview...
Animated Stats Card This component provides a visually appealing card to display a key statistic, such as "Fitness Age," against a benchmark. It features a smooth, count-up animation that triggers when the component enters the viewport, and it's fully theme-adaptive using shadcn variables.
@lavikatiyar
npx shadcn@latest add https://21st.dev/r/lavikatiyar/card-4import { AnimatedStatsCard } from "@/components/ui/card-4"; // Adjust the import path
import { Timer } from "lucide-react";
/**
* A demo component to showcase the AnimatedStatsCard.
*/
export default function AnimatedStatsCardDemo() {
return (
<div className="flex min-h-[400px] w-full items-center justify-center bg-background p-4">
<AnimatedStatsCard
title="Fitness Age"
primaryValue={30.5}
secondaryValue={37}
secondaryLabel="Your Age"
icon={<Timer className="h-5 w-5 text-primary-foreground/90" />}
/>
</div>
);
}