Components
An 8-bit styled login form with a side image panel. Features pixel-border inputs, retro button, card layout, and social login buttons, all in the Press Start 2P retro theme.
Loading preview...
import { LoginForm } from "@/components/ui/8bit-login-form-with-image";
export default function Demo() {
return (
<div className="flex min-h-screen items-center justify-center p-8 retro">
<div className="w-full max-w-2xl">
<LoginForm />
</div>
</div>
);
}