Launch Day AnnouncementPRO

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.

ComingSoon25: Launch Day Announcement

An editorial launch-date announcement from the Polaris set that leads with a single accent color, pairing a square eyebrow and a kicker with an oversized date headline on the left and a supporting note plus a dark seal remind-me button on the right, above a three-column ruled list of launch facts.

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

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/comingsoon25?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/comingsoon25.tsx.

Quick start

The installed file exports comingsoon25Demo alongside the block: the exact props behind the preview above. Spread it to get a working announcement in one line.

tsx
import { ComingSoon25, comingsoon25Demo } from "@/components/beste/block/comingsoon25";

export default function Page() {
  return <ComingSoon25 {...comingsoon25Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { ComingSoon25 } from "@/components/beste/block/comingsoon25";

export default function Page() {
  return (
    <ComingSoon25
      label="Launch Day"
      heading="October 24"
      description="Version one goes public with a live walkthrough and a launch-week offer."
      button={{ label: "Remind Me", href: "/remind" }}
      facts={[
        { value: "09:00 PT", label: "Live stream and open Q&A" },
        { value: "Version 1.0", label: "Our first public release" },
        { value: "30 days free", label: "For everyone who joins launch week" },
      ]}
      labels={{ kicker: "The wait ends" }}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringSquare eyebrow rendered via Badge6
labelsComingSoon25Labels{}Holds the small kicker line shown above the date headline
headingstringOversized launch-date headline
descriptionstringSupporting note in the right-hand column
buttonActionLinkRemind-me link rendered via Button1 with the dark tone
factsFactItem[][]Launch facts laid out as a three-column ruled list
classNamestringExtra classes for the outer <section>
ts
type ActionLink = {
  label: string;
  href: string;
};

type FactItem = {
  value: string;
  label: string;
};

type ComingSoon25Labels = {
  kicker?: string;
};

Behavior notes

More Coming Soon blocks

View all Coming Soon
FREE

comingsoon1

Countdown Timer Launch

Coming soon section with a live countdown timer showing days, hours, minutes, and seconds until launch. Perfect for product launches, event announcements, or building anticipation for new features.

PRO

comingsoon35

Add To Calendar Reminder

A centered launch-reminder section with a monospace parenthetical eyebrow, a kicker, an oversized launch-date heading, a supporting line, an add-to-calendar pill button, and a row of calendar-provider links.

PRO

comingsoon18

Launch Season Reveal

A full-bleed image pre-launch hero with a dark overlay, a monospace parenthetical eyebrow, a small kicker, an oversized launch-date headline, a supporting line, and a light outline pill notify button.

PRO

comingsoon42

Podcast Launch Teaser

A two-column podcast-launch section with an accent-badged square cover image beside a square eyebrow, show title, description, a dark seal subscribe button, platform links, and a ruled list of first episodes.

PRO

comingsoon22

Coming Soon Notify Page

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.

PRO

comingsoon44

Founder Note Waitlist

A personal pre-launch section with a square eyebrow, a statement heading, a short founder note in paragraphs, and a signature row with avatar beside a dark seal waitlist button.