Components
Loading preview...
An 8-bit styled hero section block with a subtitle badge, retro headline, dual CTA buttons, and an XP/health progress bar underneath. Source-verbatim from the 8bitcn game-hero1 block.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/8bit-game-hero1"use client";
import GameHero1 from "@/components/ui/8bit-game-hero1";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-8 retro">
<GameHero1 />
</div>
);
}