Components
Loading preview...
Pixel-art button from 8bitcn.com — wraps shadcn/ui Button with a retro variant (Press Start 2P font, hard-edge pixel borders). Drop-in API-compatible replacement.
@reapollo
npx shadcn@latest add https://21st.dev/r/larsen66/8bit-button"use client";
import { Button } from "@/components/ui/8bit-button";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-8 overflow-hidden">
<Button>Press Start</Button>
</div>
);
}