Components
Loading preview...
An animated pricing card with interactive hover effects.
npx shadcn@latest add https://21st.dev/r/0xUrvish/pricing-card"use client";
import PricingCard from "@/components/ui/pricing-card";
export default function Demo() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background p-8">
<PricingCard />
</div>
);
}