Components
Interactive 3D credit card with animated WebGL shader faces that tilts with the cursor, flips on hover, and swaps its gradient design on click.
Loading preview...
"use client";
import CardsShader from "@/components/ui/cards-shader-effect";
export default function Default() {
return (
<div className="relative h-[600px] w-full overflow-hidden rounded-xl border">
<CardsShader />
</div>
);
}