Pre-Launch ManifestoPRO

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.

ComingSoon19: Pre-Launch Manifesto

A monochrome, editorial pre-launch manifesto from the Auralis set that sits on a soft muted card with a parenthetical eyebrow, a large statement heading, a supporting paragraph, a three-column ruled list of numbered building principles, and a follow-along pill button beneath.

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

Base UI flavor

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

This installs the block to components/beste/block/comingsoon19.tsx.

Quick start

The installed file exports comingsoon19Demo alongside the block: the exact props behind the preview above. Spread it to get a working manifesto section in one line.

tsx
import { ComingSoon19, comingsoon19Demo } from "@/components/beste/block/comingsoon19";

export default function Page() {
  return <ComingSoon19 {...comingsoon19Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { ComingSoon19 } from "@/components/beste/block/comingsoon19";

export default function Page() {
  return (
    <ComingSoon19
      badge={{ label: "What we're building" }}
      heading="Not another launch. A studio that stays out of your way."
      description="We're taking our time so the first release earns its place."
      principles={[
        {
          title: "Slow enough to be right",
          description: "We ship a feature when it holds up under real work, not when a countdown says so.",
        },
        {
          title: "Nothing to relearn",
          description: "Every screen borrows from tools you already trust.",
        },
        {
          title: "Yours to leave",
          description: "Your files export in one click on day one. No lock-in.",
        },
      ]}
      button={{ label: "Follow the build", href: "/updates" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow badge rendered above the heading via Badge7
headingstringLarge statement heading in the intro column
descriptionstringSupporting paragraph under the heading
principlesPrincipleItem[][]Numbered building principles laid out as a three-column ruled list
buttonActionLinkFollow-along link rendered via Button12
classNamestringExtra classes for the outer <section>
ts
type Badge = {
  label: string;
};

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

type PrincipleItem = {
  title: string;
  description: string;
};

Behavior notes

More Coming Soon blocks

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

comingsoon26

Countdown Studio Card

A pre-launch countdown on a soft muted card with a monospace parenthetical eyebrow, a bold wordmark, a heading, a live four-unit ruled countdown to a target date, and a reserve-seat pill button.

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

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

comingsoon28

Early Tester Quote

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.

PRO

comingsoon27

Launch Roadmap Columns

A pre-launch roadmap laid out as three now-next-later columns with a monospace parenthetical eyebrow, a heading and changelog pill button on top, and ruled entry lists under each column header.