An 8-bit styled in-game pause menu overlay built on the retro card and button primitives. Shows a 'Paused' panel with pixel-art Resume, Restart and Quit actions.
"use client"; import PauseMenu from "@/components/ui/8bit-pause-menu"; export default function Default() { return ( <div className="flex w-full min-h-screen items-center justify-center bg-background p-8 retro"> <PauseMenu className="w-full max-w-[400px]" /> </div> ); }
Part of 8bitcn — browse the full library on 21st.dev.