Components
Loading preview...
Here is 3D Card component
npx shadcn@latest add https://21st.dev/r/rynkovski/3d-card-1import { Component } from '@/components/ui/3d-card-1';
const DemoCreditCard = () => {
return (
<div className="flex w-full h-screen justify-center items-center bg-muted">
<Component />
</div>
);
};
export default DemoCreditCard;