A centered coming-soon launch page with a brand wordmark, a square eyebrow, an accent-highlighted heading, a working email notify form with a success state, a launch note, and a row of social links.
A centered coming-soon launch page from the Polaris set that leads with a single accent color, stacking a brand wordmark, a square eyebrow, an accent-highlighted heading, a supporting paragraph, a working email notify form with its success state, a launch note, and a row of social links.
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/comingsoon22?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon22?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon22.tsx.
The installed file exports comingsoon22Demo alongside the block: the exact props behind the preview above. Spread it to get a working notify page in one line.
import { ComingSoon22, comingsoon22Demo } from "@/components/beste/block/comingsoon22";
export default function Page() {
return <ComingSoon22 {...comingsoon22Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this. The icon on each social entry is a lucide-react component, not a string:
import { Github, Twitter } from "lucide-react";
import { ComingSoon22 } from "@/components/beste/block/comingsoon22";
export default function Page() {
return (
<ComingSoon22
brand="Polaris"
label="Coming Soon"
heading="Something better is on the way. <strong>Be first through the door.</strong>"
description="Leave your email and we'll let you know the minute it opens."
socials={[
{ label: "Twitter", href: "/twitter", icon: Twitter },
{ label: "GitHub", href: "/github", icon: Github },
]}
labels={{
placeholder: "Enter your email",
success: "You're on the list. We'll email you the moment we go live.",
note: "Launching autumn 2026. No spam, unsubscribe anytime.",
socialsCaption: "Follow along",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Brand wordmark shown at the very top |
label | string | – | Square eyebrow rendered via Badge6 |
labels | ComingSoon22Labels | {} | Form placeholder, success, note, and socials caption strings |
heading | string | – | Bold heading; honors an inline <strong> styled in the accent color |
description | string | – | Supporting paragraph under the heading |
socials | SocialLink[] | [] | Social links rendered as a row of icon buttons |
className | string | – | Extra classes for the outer <section> |
import type { LucideIcon } from "lucide-react";
type SocialLink = {
label: string;
href: string;
icon: LucideIcon;
};
type ComingSoon22Labels = {
placeholder?: string;
success?: string;
note?: string;
socialsCaption?: string;
};handleSubmit calls preventDefault and only flips when the trimmed email is non-empty, so there is no external callback to wire.heading is rendered through dangerouslySetInnerHTML, so an inline <strong> is honored and styled in text-primary; every other string is plain text with no markup parsing.<input> and a square accent submit button carrying an ArrowRight icon; the note line renders only before submit.icon component inside a bordered Next.js <Link href={social.href} /> with the label as its aria-label, and the whole row renders only when socials is non-empty.Wiring the form up
The notify 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.
comingsoon60
A personal coming-soon page with a monospace parenthetical eyebrow, an oversized name, a role and tagline, an email contact pill button, a row of social links, and an availability status line.
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.
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.
comingsoon57
An event coming-soon section with a square eyebrow, an event name and heading, a date and venue meta row with icons, a working ticket-alert email form, and a speaker avatar row.