AuthScreen
Install
Section titled “Install”npx stylesheet-ui add auth-screenPure layout — a keyboard-aware, centered card with header (logo / title / subtitle) and a footer slot. Drop any auth form inside.
import { AuthScreen } from "@/components/ui/auth-screen";import { SignInForm } from "@/components/ui/sign-in-form";
<AuthScreen title="Welcome back" subtitle="Sign in to continue" footer={<Link href="/sign-up">Create an account</Link>}> <SignInForm onSubmit={handleSignIn} loading={loading} error={error} /></AuthScreen>