A two-column coming-soon section styled as a magazine launch with an accent-badged cover image, a masthead, a square eyebrow, a heading, a numbered contents list, and a working email subscribe form.
A Polaris two-column coming-soon section styled as a magazine launch, pairing an accent-badged cover image with a masthead, a square eyebrow, a heading, a description, a numbered contents list, and a working email subscribe form that swaps to a success state.
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/comingsoon53?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon53?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon53.tsx.
The installed file exports comingsoon53Demo alongside the block: the exact props behind the preview above. Spread it to get a working magazine launch page in one line.
import { ComingSoon53, comingsoon53Demo } from "@/components/beste/block/comingsoon53";
export default function Page() {
return <ComingSoon53 {...comingsoon53Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon53 } from "@/components/beste/block/comingsoon53";
export default function Page() {
return (
<ComingSoon53
brand="The Review"
label="Next issue"
heading="Our first issue drops this autumn."
description="A quarterly on craft, process, and the people behind the work. Subscribe now and issue one arrives free."
contents={[
"The studios rethinking how they charge",
"A field guide to saying no",
"Twelve tools we can't work without",
]}
image={{ src: "/cover.jpg", alt: "A printed magazine cover on a desk" }}
labels={{
issueBadge: "Issue 01",
contentsTitle: "Inside this issue",
placeholder: "Enter your email",
success: "Subscribed. The first issue lands in your inbox at launch.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Masthead name rendered above the eyebrow |
label | string | – | Square eyebrow rendered via Badge6 |
labels | ComingSoon53Labels | {} | Cover badge, contents title, and form placeholder and success strings |
heading | string | – | Subscribe heading |
description | string | – | Supporting paragraph under the heading |
contents | string[] | [] | Numbered contents list of upcoming pieces |
image | ImageItem | – | Cover image with an accent issue badge overlay |
className | string | – | Extra classes for the outer <section> |
type ImageItem = {
src: string;
alt: string;
};
type ComingSoon53Labels = {
issueBadge?: string;
contentsTitle?: string;
placeholder?: string;
success?: string;
};handleSubmit calls preventDefault and only flips when the trimmed email is non-empty, so there is no external callback to wire.image is set, as a plain <img> filling a bg-muted frame, with an accent bg-primary issue badge pinned top-left whenever labels.issueBadge is present.contents is non-empty, listing each item with a zero-padded accent index (01, 02, ...) over top-and-bottom borders, and its title depends on labels.contentsTitle.Wiring the form up
The 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.
comingsoon49
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.
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.
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.
comingsoon42
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.