Components
React component featuring an infinite horizontal stream of credit cards with an interactive scanning beam effect. When the vertical beam intersects with cards, it reveals dynamic ASCII code overlays, creating a futuristic data-scanning aesthetic.
Loading preview...
import CardsBeamAnimation from "@/components/ui/cards-beam-animation";
export default function DemoOne() {
return (
<div className="w-full min-h-screen bg-black">
<CardsBeamAnimation />
</div>
);
}