A personal pre-launch section with a square eyebrow, a statement heading, a short founder note in paragraphs, and a signature row with avatar beside a dark seal waitlist button.
A personal Polaris pre-launch section with a square eyebrow, a statement heading, a short founder note in paragraphs, and a signature row that pairs an avatar with a dark seal waitlist button.
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/comingsoon44?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon44?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon44.tsx.
The installed file exports comingsoon44Demo alongside the block: the exact props behind the preview above. Spread it to get a working founder note in one line.
import { ComingSoon44, comingsoon44Demo } from "@/components/beste/block/comingsoon44";
export default function Page() {
return <ComingSoon44 {...comingsoon44Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon44 } from "@/components/beste/block/comingsoon44";
export default function Page() {
return (
<ComingSoon44
label="A Note From The Founder"
heading="We'd rather be a few weeks late than a little bit wrong."
note={[
"We set out to build the tool we always wished we had.",
"Leave your name below and you'll be the first ones in.",
]}
signature={{
name: "Elena Vares",
role: "Co-founder & CEO",
avatar: { src: "/founder.jpg", alt: "Portrait of the founder" },
}}
button={{ label: "Join The Waitlist", href: "/waitlist" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Square eyebrow rendered above the heading via Badge6 |
heading | string | – | Statement heading |
note | string[] | [] | Founder note rendered as a ruled block of paragraphs |
signature | Signature | – | Avatar, name, and role in the closing row |
button | ActionLink | – | Dark seal waitlist link rendered via Button1 |
className | string | – | Extra classes for the outer <section> |
type Signature = {
name: string;
role: string;
avatar: { src: string; alt: string };
};
type ActionLink = {
label: string;
href: string;
};note renders as a ruled block under a border-t, one <p> per array entry, and is omitted entirely when the array is empty.signature avatar, name, and role on the left with the button on the right, and each side renders only when its prop is present.signature.avatar is a plain rounded <img>, and the name and role are plain text beside it.button renders as a real navigation via Button1 asChild wrapping a Next.js <Link href={button.href} /> with the dark tone, so it points at a URL rather than firing a handler; there is no email form on this block.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.
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.