Launch Day Announcement

Launch Day

The wait ends

October 24

Version one goes public with a live walkthrough, open Q&A, and a launch-week offer for everyone watching. Set a reminder and we'll bring you in.

09:00 PT

Live stream and open Q&A

Version 1.0

Our first public release

30 days free

For everyone who joins launch week

About this block

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

  • There are no event callbacks: the seal CTA renders via Button1 asChild wrapping a Next.js <Link href={button.href} /> with the dark tone, so it always points at a URL.
  • The top row is a md:grid-cols-[1fr_auto] split that pins the kicker and date headline left and the note plus button right, with a bottom rule under the whole row.
  • The facts grid collapses to md:grid-cols-3, pairing each bold value with its label, and renders only when facts is non-empty.
  • Each region is optional: the eyebrow, kicker, heading, description, button, and facts each render only when their prop or label is present.
  • Every string is plain text with no inline markup parsing, so HTML passed in shows as escaped text.

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

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

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

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.

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.