Components
Loading preview...
Login form card with email and password fields, plus Google sign-in, built in the retro 8-bit pixel style.
npx shadcn@latest add https://21st.dev/r/theorcdev/8bit-login-form"use client";
import LoginForm from "@/components/ui/8bit-login-form";
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>
);
}