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.
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.
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
npx shadcn add "https://ui.beste.co/r/comingsoon74?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Square eyebrow rendered via Badge6 |
labels | ComingSoon74Labels | {} | Form placeholder, success, and note strings |
heading | string | – | Section heading |
description | string | – | Supporting paragraph under the heading |
features | FeatureItem[] | [] | What's-new cards, each carrying its own icon |
className | string | – | Extra classes for the outer <section> |
import type { LucideIcon } from "lucide-react";
type FeatureItem = {
icon: LucideIcon;
title: string;
description: string;
};
type ComingSoon74Labels = {
placeholder?: string;
success?: string;
note?: string;
};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.Check icon, and the note line hides once submitted since it renders only when note is set and the form is not yet submitted.icon is a LucideIcon component reference passed straight through, rendered at size-5 inside a muted rounded tile above the title and description.features is non-empty, flowing from one column up to four across at the large breakpoint.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.
comingsoon53
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.
comingsoon15
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.
comingsoon54
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.
comingsoon50
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.