Coming Soon Notify Page

Polaris

Coming Soon

Something better is on the way. Be first through the door.

We're putting the finishing touches on a workspace your whole team will actually enjoy. Leave your email and we'll let you know the minute it opens.

Launching autumn 2026. No spam, unsubscribe anytime.

Follow along

About this block

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

  • The notify form owns its own state and swaps to a success panel on submit; handleSubmit calls preventDefault and only flips when the trimmed email is non-empty, so there is no external callback to wire.
  • The 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.
  • The rounded form is a single bordered pill with a transparent <input> and a square accent submit button carrying an ArrowRight icon; the note line renders only before submit.
  • Each social entry renders its 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.
  • The page is a full-height centered flex column; the brand, eyebrow, heading, description, form, note, and socials each render only when their prop or label is present.

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

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

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

comingsoon25

Launch Day Announcement

An editorial launch-date announcement with a square eyebrow, a kicker, an oversized date headline paired with a supporting note and a dark seal remind-me button, above a three-column ruled list of launch facts.