A community coming-soon section on a soft muted card with a monospace parenthetical eyebrow, a heading, a working email waitlist form, a secondary outline community pill button, and an avatar row with a member count.
An Auralis community coming-soon section on a soft muted card with a monospace parenthetical eyebrow, a heading, a description, a working email waitlist form, a secondary outline community pill button, and an avatar row with a member count.
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/comingsoon61?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon61?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon61.tsx.
The installed file exports comingsoon61Demo alongside the block: the exact props behind the preview above. Spread it to get a working community waitlist in one line.
import { ComingSoon61, comingsoon61Demo } from "@/components/beste/block/comingsoon61";
export default function Page() {
return <ComingSoon61 {...comingsoon61Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon61 } from "@/components/beste/block/comingsoon61";
export default function Page() {
return (
<ComingSoon61
badge={{ label: "The community" }}
heading="A quiet corner for people who make things is opening."
description="No feeds, no noise, just the makers you'd actually want to share a table with. Reserve your seat, or come say hello."
avatars={[
{ src: "/people/ava.jpg", alt: "Community member" },
{ src: "/people/theo.jpg", alt: "Community member" },
{ src: "/people/priya.jpg", alt: "Community member" },
]}
button={{ label: "Say hello first", href: "/chat" }}
labels={{
count: "1,200",
proof: "founding members already inside",
placeholder: "you@studio.com",
success: "You're in. We'll send your invite before the doors open.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Parenthetical eyebrow rendered above the heading via Badge7 |
labels | ComingSoon61Labels | {} | Member count, proof, and form placeholder and success strings |
heading | string | – | Waitlist heading |
description | string | – | Supporting paragraph under the heading |
avatars | AvatarItem[] | [] | Overlapping member avatar stack shown as social proof |
button | ActionLink | – | Secondary outline community pill rendered via Button12 with a MessageCircle icon |
className | string | – | Extra classes for the outer <section> |
type AvatarItem = {
src: string;
alt: string;
};
type Badge = {
label: string;
};
type ActionLink = {
label: string;
href: string;
};
type ComingSoon61Labels = {
count?: string;
proof?: string;
placeholder?: string;
success?: string;
};handleSubmit calls preventDefault and only flips when the trimmed email is non-empty, so there is no external callback to wire.button renders as a real link via Button12 asChild wrapping a Next.js <Link href={button.href} /> with the outline tone and a MessageCircle icon, and it is hidden once the form is submitted.bg-muted card in a max-w-3xl column, and the eyebrow, heading, and description each render only when their prop is present.avatars, labels.count, or labels.proof is present, showing a -space-x-3 overlapping avatar stack above a line that bolds the count before the proof text.rounded-full pill with a bg-foreground text-background submit button, and every string is plain text with no inline markup parsing, so HTML passed in shows as escaped text.Wiring the form up
The form ships with local state and a success message but no backend, so submissions are not sent anywhere until you connect one. Point handleSubmit 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.
comingsoon32
A centered pre-launch section with a monospace parenthetical eyebrow, a statement heading, a supporting paragraph, a waitlist pill button, and a captioned grayscale logo strip of early partners.
comingsoon50
A coming-soon section on a soft muted card with a monospace parenthetical eyebrow, a heading, a launch-readiness percentage that counts up with an animated progress bar, a build-status row, and a working email notify form.
comingsoon6
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.