Components
Loading preview...
An interactive 8-bit arena duel between two fighters with retro HP health bars, turn-based hit mechanics, randomized damage and battle messages, a winner state with rematch, all wrapped in pixel-art alert and badge primitives.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/8bit-duel-block"use client";
import DuelBlock from "@/components/ui/8bit-duel-block";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-8 retro">
<DuelBlock />
</div>
);
}