Early Tester QuotePRO

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.

ComingSoon28: Early Tester Quote

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.

Upgrade Now

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/comingsoon28?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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." }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Parenthetical eyebrow rendered above the quote via Badge7
labelsComingSoon28Labels{}Supporting note shown beneath the invite button
quotestringLarge early-tester pull quote
authorAuthorAuthor name, role, and avatar shown under the quote
buttonActionLinkInvite pill link rendered via Button12
classNamestringExtra classes for the outer <section>
ts
type Author = {
  name: string;
  role: string;
  avatar: { src: string; alt: string };
};

type ActionLink = {
  label: string;
  href: string;
};

type ComingSoon28Labels = {
  note?: string;
};

Behavior notes

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon19

Pre-Launch Manifesto

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.

PRO

comingsoon38

Private Beta Apply

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.

PRO

comingsoon32

Trusted By Waitlist

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.

PRO

comingsoon50

Launch Readiness Progress

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.

PRO

comingsoon15

Waitlist Coming Soon

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.

PRO

comingsoon63

Product Pre-Order Teaser

A product launch coming-soon section with a full-height product image beside a monospace parenthetical eyebrow, a product name, a tagline, a ship date, a working notify email form, and a spec grid.