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.
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.
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
npx shadcn add "https://ui.beste.co/r/comingsoon35?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Parenthetical eyebrow rendered above the kicker via Badge7 |
labels | ComingSoon35Labels | {} | Kicker line above the heading and the caption before the provider links |
heading | string | – | Oversized launch-date heading |
description | string | – | Supporting paragraph under the heading |
button | ActionLink | – | Add-to-calendar pill link rendered via Button12 with a CalendarPlus icon |
providers | ActionLink[] | [] | Dot-separated calendar-provider links |
className | string | – | Extra classes for the outer <section> |
type ComingSoon35Labels = {
kicker?: string;
providersCaption?: string;
};
type ActionLink = {
label: string;
href: string;
};button renders via Button12 asChild wrapping a Next.js <Link href={button.href} /> with a CalendarPlus icon, so it always points at a URL such as an .ics file.providers is non-empty, mapping each entry to a Next.js <Link href={provider.href} /> with a middot separator between items (rendered for every entry except the last).heading is set at a text-4xl to md:text-6xl display scale, so the launch date reads as the visual anchor of the section.comingsoon32
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.
comingsoon25
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.
comingsoon29
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.
comingsoon70
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.