Add To Calendar ReminderPRO

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.

ComingSoon35: Add To Calendar Reminder

A monochrome, editorial centered launch-reminder section with a parenthetical eyebrow, a small kicker, an oversized launch-date heading, a supporting line, an add-to-calendar pill button, and a row of dot-separated calendar-provider 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/comingsoon35?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

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

Quick start

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

tsx
import { ComingSoon35, comingsoon35Demo } from "@/components/beste/block/comingsoon35";

export default function Page() {
  return <ComingSoon35 {...comingsoon35Demo} />;
}

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

tsx
import { ComingSoon35 } from "@/components/beste/block/comingsoon35";

export default function Page() {
  return (
    <ComingSoon35
      badge={{ label: "Mark your calendar" }}
      heading="Thursday, October 24"
      description="We go live at 09:00 with an open studio session."
      button={{ label: "Add to your calendar", href: "/launch.ics" }}
      providers={[
        { label: "Google", href: "/calendar/google" },
        { label: "Apple", href: "/launch.ics" },
        { label: "Outlook", href: "/calendar/outlook" },
      ]}
      labels={{ kicker: "Doors open", providersCaption: "Or add it straight to" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Parenthetical eyebrow rendered above the kicker via Badge7
labelsComingSoon35Labels{}Kicker line above the heading and the caption before the provider links
headingstringOversized launch-date heading
descriptionstringSupporting paragraph under the heading
buttonActionLinkAdd-to-calendar pill link rendered via Button12 with a CalendarPlus icon
providersActionLink[][]Dot-separated calendar-provider links
classNamestringExtra classes for the outer <section>
ts
type ComingSoon35Labels = {
  kicker?: string;
  providersCaption?: string;
};

type ActionLink = {
  label: string;
  href: string;
};

Behavior notes

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon32

Trusted By Waitlist

A centered pre-launch section with a monospace parenthetical eyebrow, a statement heading, a supporting paragraph, a waitlist pill button, and a captioned grayscale logo strip of early partners.

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.

PRO

comingsoon29

Upcoming Writing Grid

A newsletter-forward pre-launch section with a monospace parenthetical eyebrow, a heading and subscribe pill button on top, and a three-card grid of upcoming articles each with a kind label, title, and summary.

PRO

comingsoon70

Newsletter Sample Issues

A newsletter coming-soon section with a centered monospace parenthetical eyebrow, a heading, a working subscribe email form, and a three-card grid previewing upcoming issues.

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

comingsoon27

Launch Roadmap Columns

A pre-launch roadmap laid out as three now-next-later columns with a monospace parenthetical eyebrow, a heading and changelog pill button on top, and ruled entry lists under each column header.