Components
Loading preview...
An 8-bit retro login form with Apple and Google social login buttons, email and password fields, and a pixel-styled card.
npx shadcn@latest add https://21st.dev/r/OrcDev/8bit-login-form-2"use client";
import LoginForm from "@/components/ui/8bit-login-form-2";
export default function Default() {
return (
<div className="dark flex w-full min-h-screen items-center justify-center bg-background p-8 retro">
<div className="w-full max-w-sm">
<LoginForm />
</div>
</div>
);
}