A quote-led pre-launch section on a soft muted card with a monospace parenthetical eyebrow, a large early-tester pull quote, an author row with avatar, and an invite pill button with a supporting note.
A monochrome, editorial pre-launch card that centers a parenthetical eyebrow, an oversized early-tester pull quote, an author row with a round avatar, and a border-topped footer pairing an invite pill button with a supporting note, all on a soft muted surface.
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/comingsoon28?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon28?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon28.tsx.
The installed file exports comingsoon28Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.
import { ComingSoon28, comingsoon28Demo } from "@/components/beste/block/comingsoon28";
export default function Page() {
return <ComingSoon28 {...comingsoon28Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon28 } from "@/components/beste/block/comingsoon28";
export default function Page() {
return (
<ComingSoon28
badge={{ label: "From the first testers" }}
quote="It felt finished before it launched, and that never happens."
author={{
name: "Marlowe Reyes",
role: "Founder, Studio Vellum",
avatar: { src: "/people/marlowe.jpg", alt: "Portrait of an early tester" },
}}
button={{ label: "Ask for an invite", href: "/waitlist" }}
labels={{ note: "Fifty makers are already inside. The next hundred seats open soon." }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Parenthetical eyebrow rendered above the quote via Badge7 |
labels | ComingSoon28Labels | {} | Supporting note shown beneath the invite button |
quote | string | – | Large early-tester pull quote |
author | Author | – | Author name, role, and avatar shown under the quote |
button | ActionLink | – | Invite pill link rendered via Button12 |
className | string | – | Extra classes for the outer <section> |
type Author = {
name: string;
role: string;
avatar: { src: string; alt: string };
};
type ActionLink = {
label: string;
href: string;
};
type ComingSoon28Labels = {
note?: string;
};button is a real navigation via Button12 asChild wrapping a Next.js <Link href={button.href} />, so it always points at a URL.<img> in a size-14 rounded-full frame beside a left-aligned name and role.border-t footer, so passing neither leaves the divider and padding but no content below it.bg-muted surface in a max-w-4xl column, and every string is plain text with no inline markup parsing, so HTML passed in shows as escaped text.comingsoon19
A pre-launch manifesto section on a soft muted card with a monospace parenthetical eyebrow, a large statement heading, and a three-column ruled list of numbered building principles above a follow-along pill button.
comingsoon38
A two-column private-beta section with a square eyebrow, a heading, a supporting paragraph, and a dark seal apply button beside a bordered card listing accent-checked tester benefits.
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.