Components
Loading preview...
This is an interactive prediction market card component that lets users place live bets on time-sensitive sports outcomes, featuring a dual-view layout with a dynamic voting interface and a smooth animated betting modal. It includes motion-enhanced progress bars, real-time countdown, responsive bet shifts, and visual feedback for both “Yes” and “No” votes—all wrapped in a polished, mobile-ready UI. Perfect for real-time sports betting platforms, social prediction apps, or any gamified finance interface that needs fast user engagement with rich data display and dynamic transitions.
npx shadcn@latest add https://21st.dev/r/isaiahbjork/prediction-market-card"use client";
import { PredictionMarketCard } from "@/components/ui/prediction-market-card";
export default function Page() {
return (
<div className="min-h-screen p-4 bg-background flex items-center justify-center">
<PredictionMarketCard />
</div>
);
}