Components
Loading preview...
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.
npx shadcn@latest add https://21st.dev/r/OrcDev/8bit-pause-menu"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>
);
}