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

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

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

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.

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.