Components
Loading preview...
Here is Pricing Section component
@ayushmxxn
npx shadcn@latest add https://21st.dev/r/ayushmxxn/pricing-section// This is a demo of a preview
'use client'
import { Component } from "@/components/ui/pricing-section";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<Component />
</div>
);
};
export default DemoOne;