Trusted By Waitlist

(In good company)

Quietly in progress, and already trusted by the people we admire.

A handful of studios have been shaping Auralis with us behind closed doors. The waitlist is how you join them.

(The teams already building with us in private)
LogoipsumLogoipsumLogoipsumLogoipsumLogoipsum
About this block

Trusted By WaitlistPRO

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.

ComingSoon32: Trusted By Waitlist

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.

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/comingsoon32?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

Quick start

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.

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

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

Props

PropTypeDefaultDescription
badge{ label: string }Parenthetical eyebrow rendered above the heading via Badge7
labelsComingSoon32Labels{}Caption rendered above the logo strip
headingstringStatement heading
descriptionstringSupporting paragraph under the heading
buttonActionLinkWaitlist pill link rendered via Button12
logosLogoItem[][]Grayscale partner logos rendered in a wrapped strip
classNamestringExtra classes for the outer <section>
ts
type ComingSoon32Labels = {
  logosCaption?: string;
};

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

type LogoItem = {
  src: string;
  alt: string;
};

Behavior notes

  • There is no form or event callback: the button is a real navigation via Button12 asChild wrapping a Next.js <Link href={button.href} />, so it always points at a URL.
  • The eyebrow, heading, description, and button each render only when their prop is present, so the centered column collapses cleanly around whatever you omit.
  • The logo strip renders only when logos is non-empty, sitting below a border-t divider, with labels.logosCaption shown above it as another Badge7 eyebrow when set.
  • Each logo is a plain <img> styled opacity-50 grayscale, so full-color source art is desaturated to match the monochrome treatment.
  • Every string is plain text with no inline markup parsing, so HTML passed in shows as escaped text.

More Coming Soon blocks

View all Coming Soon
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

comingsoon61

Community Launch Waitlist

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.

PRO

comingsoon36

Countdown Clock Waitlist

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.

PRO

comingsoon16

Image Split Waitlist

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.

PRO

comingsoon73

Sign The Wall Waitlist

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.

PRO

comingsoon44

Founder Note Waitlist

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.