Components
Loading preview...
An 8-bit styled call-to-action block framing problem vs solution as a boss fight, with two retro cards (the problem and the power-up) and a closing CTA button. Source-verbatim from the 8bitcn game-cta1 block.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/8bit-game-cta1"use client";
import GameCTA1 from "@/components/ui/8bit-game-cta1";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-8 retro">
<GameCTA1 />
</div>
);
}