Components
Loading preview...
An 8-bit styled party grid block. Displays a team of player profile cards with retro avatars, level badges, and health, mana, and experience bars, built on the retro card, avatar, badge, health-bar, mana-bar, and progress primitives.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/8bit-game-team1"use client";
import GameTeam1 from "@/components/ui/8bit-game-team1";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background retro">
<GameTeam1 />
</div>
);
}