Join our waitlist and get exclusive early access when we launch. No spam, just one email when we're ready.
No spam. Unsubscribe anytime.
Coming soon section with an email waitlist input, stacked subscriber avatars, and a live join count. Perfect for building early traction and social proof before launch.
A centered waitlist section that stacks a badge, heading, and description above an inline email input and join button, then shows an overlapping subscriber avatar stack beside a templated join-count line for social proof.
Upgrade to Pro
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/comingsoon6?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon6?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon6.tsx.
The installed file exports comingsoon6Demo alongside the block: the exact props behind the preview above. Spread it to get a working waitlist section in one line.
import { ComingSoon6, comingsoon6Demo } from "@/components/beste/block/comingsoon6";
export default function Page() {
return <ComingSoon6 {...comingsoon6Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon6 } from "@/components/beste/block/comingsoon6";
export default function Page() {
return (
<ComingSoon6
badge={{ label: "Early access", variant: "secondary" }}
heading="Be the first to experience it"
description="Join the waitlist and get access the moment we launch."
subscribers={[
{ name: "Alex", image: "/people/alex.jpg" },
{ name: "Sarah", image: "/people/sarah.jpg" },
{ name: "Mike", image: "/people/mike.jpg" },
]}
subscriberCount={2840}
labels={{
placeholder: "Enter your email",
button: "Join waitlist",
joinedCount: "{count}+ people already joined",
noSpam: "No spam. Unsubscribe anytime.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Eyebrow badge rendered above the heading via shadcn Badge |
heading | string | – | Section heading |
description | string | – | Supporting paragraph under the heading |
subscribers | Subscriber[] | [] | Avatars shown in the overlapping proof stack |
subscriberCount | number | 0 | Number interpolated into the join-count line |
labels | { placeholder?: string; button?: string; joinedCount?: string; noSpam?: string } | – | Input placeholder, button text, templated count, and the no-spam note |
className | string | – | Extra classes for the outer <section> |
interface Subscriber {
name: string;
image: string;
}Input and join Button render unconditionally as static UI: there is no local state, submit handler, or callback wired to either control.subscriberCount.toLocaleString() into labels.joinedCount by replacing the {count} token, so the number renders with locale grouping.subscribers.length > 0 or subscriberCount > 0; within it the avatar stack renders only when there are subscribers, and it slices to the first five entries.-space-x-3 overlapping stack of plain <img> elements with border-background rings, and the noSpam note renders only when supplied.Badge, Button, and Input primitives, with an ArrowRight lucide icon inside the button.Wiring the form up
The form ships as UI without a backend, so submissions are not sent anywhere until you connect one. Point the submit handler at your own route handler or email platform, or wire in a form library. For a walkthrough of the options, see React Hook Form, TanStack Form, and Formisch.
comingsoon15
A centered pre-launch section with an eyebrow, a large light heading, a paragraph, an image tile holding a working email-capture form with a success state, and a social-proof note.
comingsoon21
A centered waitlist section with a square eyebrow, a bold accent-highlighted heading, a working rounded email-capture form with a success state, and an avatar row with a live signup counter.
comingsoon36
A centered pre-launch section with a square eyebrow, an accent-highlighted heading, a large colon-separated live countdown clock, a working email-capture form with a success state, and an avatar social-proof row.
comingsoon73
An interactive waitlist coming-soon section with a monospace parenthetical eyebrow, a heading, a name and email form, and a live wall of member name chips that prepends your own entry on submit.