Components
Loading preview...
An 8-bit styled game over screen block built on the retro card and button primitives. Shows a 'Game Over / Continue?' panel with pixel-art Retry and Exit buttons and an optional skull artwork pane.
npx shadcn@latest add https://21st.dev/r/OrcDev/8bit-game-over"use client";
import GameOver from "@/components/ui/8bit-game-over";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-8 retro">
<GameOver className="w-full max-w-[600px]" />
</div>
);
}