Components
Loading preview...
Aniamted Pricing Cards
npx shadcn@latest add https://21st.dev/r/aghasisahakyan1/aniamted-pricing-cardsimport { Heading, PricingWrapper, Price, Paragraph } from "@/components/ui/aniamted-pricing-cards";
export default function DemoOne() {
return <div className={' h-[600px] w-full flex gap-12 items-center justify-center'}>
<PricingWrapper contactHref={'/'} type={'waves'}>
<Heading>component</Heading>
<Price>
$2000
<br />
/mo
</Price>
<Paragraph>
Special UI component for your website made with React.js, TailwindCSS and FramerMotion.
</Paragraph>
</PricingWrapper>
</div>
}