Full-height waitlist capture with an email field, a join button, a social-proof line, and a sign-in link for existing users. Perfect for pre-launch and early-access landing gates.
A full-height, vertically centered waitlist gate: an optional circular icon badge above a heading and description, a bordered card holding an email Input, a full-width submit Button, and a centered social-proof line, with a separate sign-in prompt linking existing users out below the card.
Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.
Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.
Radix flavor
npx shadcn add "https://ui.beste.co/r/auth43?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/auth43?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/auth43.tsx, plus the button, input, and field shadcn/ui primitives it uses for the submit button, the email input, and the field group wrapping the label, description, and layout.
The installed file exports auth43Demo alongside the block: the exact props behind the preview above. Spread it to get a working waitlist gate in one line.
import { Auth43, auth43Demo } from "@/components/beste/block/auth43";
export default function WaitlistPage() {
return <Auth43 {...auth43Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Sparkles } from "lucide-react";
import { Auth43 } from "@/components/beste/block/auth43";
export default function WaitlistPage() {
return (
<Auth43
icon={<Sparkles className="size-6" />}
heading="Join the waitlist"
description="Be the first to know when we open up. No spam, ever."
labels={{
email: "Email",
emailPlaceholder: "you@example.com",
submit: "Join the waitlist",
socialProof: "Join 4,200+ people already on the list.",
}}
signinPrompt={{ text: "Already have access?", linkLabel: "Sign in", href: "/login" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
icon | React.ReactNode | – | Optional node shown inside the circular badge above the heading |
heading | string | – | Centered page heading |
description | string | – | Muted sub-line under the heading |
labels | { email?: string; emailPlaceholder?: string; submit?: string; socialProof?: string } | {} | Text for the email label, input placeholder, submit button, and social-proof line |
signinPrompt | { text: string; linkLabel: string; href: string } | – | Sign-in prompt rendered below the card as text plus a link |
className | string | – | Extra classes for the outer <section> |
type Labels = {
email?: string;
emailPlaceholder?: string;
submit?: string;
socialProof?: string;
};
type SigninPrompt = {
text: string;
linkLabel: string;
href: string;
};onSubmit={(e) => e.preventDefault()}, so the email is never read or sent anywhere; wiring capture (state, validation, a POST) is left entirely to the integrator.Input is uncontrolled with no value, name, required, or onChange, so its typed value is not tracked by the component at all.heading, description, the email FieldLabel, the submit Button, the socialProof line, and the whole signinPrompt block each only appear when their corresponding prop or label is provided.labels defaults to {} and is destructured field by field, so omitting individual keys silently hides just that piece rather than throwing.id is derived from React's useId() (`${fieldId}-email`) and paired to the FieldLabel via htmlFor, so the label-input association is unique per instance without any manual id prop.min-h-screen and centers its max-w-md column both axes, so the block always fills the viewport height regardless of content length.signinPrompt.href is passed straight to a next/link <Link>, so it must be a valid Next.js route or absolute URL; there is no target or rel handling.Wiring the form up
This block ships the form markup only; state, validation, and submit are yours to add. Our guide wires the shadcn Field primitives to React Hook Form, TanStack Form, and Formisch on one field system.
auth16
Full-height invitation acceptance screen showing the inviter's avatar and team name, a pre-filled disabled email, and name and password fields to set up the account. Perfect for team onboarding and invite-link flows.
auth24
Full-height profile setup step with an avatar uploader, a display name field, and a bio textarea, plus a skip option. Perfect for the post-sign-up onboarding step where users personalize their account.
auth12
Full-height success screen with a large confirmation check, a heading and message, a primary continue button, and a support link. Perfect for the final step after email verification or account activation.
auth25
Full-height username picker with a prefixed input group, a live availability indicator, suggestion chips when a handle is taken, and a submit button that unlocks only when the name is free. Perfect for onboarding handle selection.
auth42
Full-height invite-only gate with a centered code field and a request-an-invite link. Perfect for closed betas, early access, and gated launches.
auth17
Full-height signed-out screen with a centered icon, a heading and message, a sign-back-in button, and a return-home link. Perfect for logout confirmations and expired-session pages.