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.
A monochrome, editorial centered pre-launch section with a parenthetical eyebrow, a statement heading, a supporting paragraph, a waitlist pill button, and a captioned grayscale logo strip of early partners below a divider.
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/comingsoon32?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon32?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon32.tsx.
The installed file exports comingsoon32Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.
import { ComingSoon32, comingsoon32Demo } from "@/components/beste/block/comingsoon32";
export default function Page() {
return <ComingSoon32 {...comingsoon32Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon32 } from "@/components/beste/block/comingsoon32";
export default function Page() {
return (
<ComingSoon32
badge={{ label: "In good company" }}
heading="Quietly in progress, and already trusted by the people we admire."
description="A handful of studios have been shaping it with us behind closed doors."
button={{ label: "Join the waitlist", href: "/waitlist" }}
logos={[
{ src: "/logos/logoipsum-380.png", alt: "Logoipsum" },
{ src: "/logos/logoipsum-388.png", alt: "Logoipsum" },
{ src: "/logos/logoipsum-395.png", alt: "Logoipsum" },
]}
labels={{ logosCaption: "The teams already building with us in private" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Parenthetical eyebrow rendered above the heading via Badge7 |
labels | ComingSoon32Labels | {} | Caption rendered above the logo strip |
heading | string | – | Statement heading |
description | string | – | Supporting paragraph under the heading |
button | ActionLink | – | Waitlist pill link rendered via Button12 |
logos | LogoItem[] | [] | Grayscale partner logos rendered in a wrapped strip |
className | string | – | Extra classes for the outer <section> |
type ComingSoon32Labels = {
logosCaption?: string;
};
type ActionLink = {
label: string;
href: string;
};
type LogoItem = {
src: string;
alt: string;
};button is a real navigation via Button12 asChild wrapping a Next.js <Link href={button.href} />, so it always points at a URL.logos is non-empty, sitting below a border-t divider, with labels.logosCaption shown above it as another Badge7 eyebrow when set.<img> styled opacity-50 grayscale, so full-color source art is desaturated to match the monochrome treatment.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.
comingsoon61
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.
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.
comingsoon16
A two-column pre-launch section with a monospace parenthetical eyebrow, an oversized headline, a working rounded email-capture form with a success state, an avatar social-proof row, and a tall full-bleed image carrying a floating launch label.