Coming Soon Notify PagePRO

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.

ComingSoon22: Coming Soon Notify Page

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.

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

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringBrand wordmark shown at the very top
labelstringSquare eyebrow rendered via Badge6
labelsComingSoon22Labels{}Form placeholder, success, note, and socials caption strings
headingstringBold heading; honors an inline <strong> styled in the accent color
descriptionstringSupporting paragraph under the heading
socialsSocialLink[][]Social links rendered as a row of icon buttons
classNamestringExtra classes for the outer <section>
ts
import type { LucideIcon } from "lucide-react";

type SocialLink = {
  label: string;
  href: string;
  icon: LucideIcon;
};

type ComingSoon22Labels = {
  placeholder?: string;
  success?: string;
  note?: string;
  socialsCaption?: string;
};

Behavior notes

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.

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon60

Portfolio Under Construction

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.

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

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

comingsoon57

Event Tickets Coming Soon

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.

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

comingsoon69

Careers Job Alerts

A hiring coming-soon section with a centered square eyebrow and heading, a working job-alert email form, and a list of upcoming roles with team and employment type.