Components
Challenge Card A visually engaging card component designed to present challenges or calls-to-action. It features a prominent title, description, and an animated button to encourage user interaction. The entire card lifts and scales on hover for a modern, tactile feel.
Loading preview...
import { ChallengeCard } from "@/components/ui/card-9"; // Adjust the import path
export default function ChallengeCardDemo() {
return (
<div className="flex min-h-[400px] w-full items-center justify-center bg-background p-4">
<ChallengeCard
title="End March 160 KM Challenge"
description="Complete 160 KM until end of March and you will get a surprise gift."
buttonText="Join Challenge"
// Example of custom background color
// backgroundColor="bg-blue-500"
/>
</div>
);
}