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.
"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> ); }
Part of 8bitcn — browse the full library on 21st.dev.