Version Two Relaunch

Version Two

We rebuilt it from the ground up.

Everything you liked, faster and quieter, plus the things you kept asking for. Get early access before the public rollout.

Existing customers upgrade free.

Twice as fast

A new engine that loads your workspace the moment you open it.

Rebuilt editor

The canvas you know, now with layers, history, and live cursors.

An open API

Connect the tools your team already runs on, no workarounds.

Smart assists

Quiet suggestions that speed you up without getting in the way.

About this block

Version Two RelaunchPRO

A relaunch coming-soon section with a centered square eyebrow and heading, a working early-access email form, and a grid of what's-new feature cards with icons.

ComingSoon74: Version Two Relaunch

A Polaris relaunch coming-soon section (single accent color, square eyebrow) that centers an eyebrow, a heading, and a description over a working early-access email form, then lays out a grid of what's-new feature cards, each led by its own icon.

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

Base UI flavor

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

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

Quick start

The installed file exports comingsoon74Demo alongside the block: the exact props behind the preview above. Spread it to get a working early-access page in one line.

tsx
import { ComingSoon74, comingsoon74Demo } from "@/components/beste/block/comingsoon74";

export default function Page() {
  return <ComingSoon74 {...comingsoon74Demo} />;
}

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

tsx
import { Gauge, Layers, Puzzle } from "lucide-react";
import { ComingSoon74 } from "@/components/beste/block/comingsoon74";

export default function Page() {
  return (
    <ComingSoon74
      label="Version Two"
      heading="We rebuilt it from the ground up."
      description="Everything you liked, faster and quieter, plus the things you kept asking for."
      features={[
        { icon: Gauge, title: "Twice as fast", description: "A new engine that loads your workspace the moment you open it." },
        { icon: Layers, title: "Rebuilt editor", description: "The canvas you know, now with layers, history, and live cursors." },
        { icon: Puzzle, title: "An open API", description: "Connect the tools your team already runs on, no workarounds." },
      ]}
      labels={{
        placeholder: "Enter your email",
        success: "You're on the list. We'll hand you the keys to v2 first.",
        note: "Existing customers upgrade free.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringSquare eyebrow rendered via Badge6
labelsComingSoon74Labels{}Form placeholder, success, and note strings
headingstringSection heading
descriptionstringSupporting paragraph under the heading
featuresFeatureItem[][]What's-new cards, each carrying its own icon
classNamestringExtra classes for the outer <section>
ts
import type { LucideIcon } from "lucide-react";

type FeatureItem = {
  icon: LucideIcon;
  title: string;
  description: string;
};

type ComingSoon74Labels = {
  placeholder?: string;
  success?: string;
  note?: string;
};

Behavior notes

  • The early-access form owns its email state; handleSubmit calls preventDefault and only flips to the success panel when the trimmed email is non-empty, so there is no external callback to wire.
  • On submit the form swaps for a bordered success capsule with a Check icon, and the note line hides once submitted since it renders only when note is set and the form is not yet submitted.
  • Each feature's icon is a LucideIcon component reference passed straight through, rendered at size-5 inside a muted rounded tile above the title and description.
  • The feature grid renders only when features is non-empty, flowing from one column up to four across at the large breakpoint.
  • Every region is optional: the eyebrow, heading, description, and feature grid each render only when their prop is present.
  • No inline markup is parsed: every string renders as plain text, so HTML passed in shows as escaped text.

Wiring the form up

The form ships with local state and a success message but no backend, so submissions are not sent anywhere until you connect one. Point handleSubmit at your own route handler or email platform, or wire in a form library. For a walkthrough of the options, see React Hook Form, TanStack Form, and Formisch.

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon53

Next Issue Magazine

A two-column coming-soon section styled as a magazine launch with an accent-badged cover image, a masthead, a square eyebrow, a heading, a numbered contents list, and a working email subscribe 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

comingsoon54

Locked Product Preview

A two-column coming-soon section with a square eyebrow, a heading and a working email notify form, beside a browser-window mockup showing a blurred, lock-badged product preview.

PRO

comingsoon64

Under Construction Contact

A B2B coming-soon section with a studio name, a square eyebrow, a heading, an icon contact-details list, and a working name, email, and message contact form with a success state.

PRO

comingsoon49

Framed Editorial Launch

A two-column coming-soon section with a vertical monospace edge label, an oversized wordmark, a tagline and a working email notify form, beside a framed portrait image tile.

PRO

comingsoon6

Waitlist with Avatars

Coming soon section with an email waitlist input, stacked subscriber avatars, and a live join count. Perfect for building early traction and social proof before launch.