Components
Loading preview...
Pixel-art input from 8bitcn.com — wraps shadcn/ui Input with hard-edge pixel borders and Press Start 2P retro variant.
npx shadcn@latest add https://21st.dev/r/theorcdev/8bit-input"use client";
import { Input } from "@/components/ui/8bit-input";
export default function Default() {
return (
<div className="flex w-full min-h-screen items-center justify-center bg-background p-8 retro">
<Input placeholder="Enter player name…" className="w-80" />
</div>
);
}