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