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.
A monochrome Auralis newsletter section (oversized editorial type, a monospace parenthetical eyebrow) that centers a badge, a heading, and a description over a working subscribe email form, then previews upcoming issues in a three-card grid below.
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/comingsoon70?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/comingsoon70?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/comingsoon70.tsx.
The installed file exports comingsoon70Demo alongside the block: the exact props behind the preview above. Spread it to get a working subscribe page in one line.
import { ComingSoon70, comingsoon70Demo } from "@/components/beste/block/comingsoon70";
export default function Page() {
return <ComingSoon70 {...comingsoon70Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { ComingSoon70 } from "@/components/beste/block/comingsoon70";
export default function Page() {
return (
<ComingSoon70
badge={{ label: "The newsletter" }}
heading="A weekly letter on the craft of building things."
description="Notes on design, process, and the small decisions that add up."
issues={[
{ issue: "No. 01", title: "The cost of one more feature", summary: "Why the best product decisions are the ones you talk yourself out of." },
{ issue: "No. 02", title: "Designing for the second week", summary: "Anyone can win day one. Retention is a design problem." },
{ issue: "No. 03", title: "Writing that ships", summary: "How clear copy quietly does the work of a dozen features." },
]}
labels={{
issuesTitle: "A peek at what's coming",
placeholder: "you@studio.com",
success: "You're subscribed. The first issue lands next week.",
cadence: "One thoughtful issue every Sunday. Unsubscribe anytime.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Eyebrow badge rendered above the heading via Badge7 |
labels | ComingSoon70Labels | {} | Issues title plus the form placeholder, success, and cadence strings |
heading | string | – | Section heading |
description | string | – | Supporting paragraph under the heading |
issues | IssueItem[] | [] | Sample-issue cards shown in the grid below |
className | string | – | Extra classes for the outer <section> |
type IssueItem = {
issue: string;
title: string;
summary: string;
};
type Badge = {
label: string;
};
type ComingSoon70Labels = {
issuesTitle?: string;
placeholder?: string;
success?: string;
cadence?: string;
};handleSubmit calls preventDefault and only flips to the success capsule when the trimmed email is non-empty, so there is no external callback to wire.Check icon, and the cadence line hides once submitted since it renders only when cadence is set and the form is not yet submitted.issues is non-empty, laying each entry into a fixed three-column card grid with its issue number, title, and summary.badge eyebrow and the issuesTitle render through Badge7, sharing the monospace parenthetical treatment.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.
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.
comingsoon53
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.
comingsoon15
A centered pre-launch section with an eyebrow, a large light heading, a paragraph, an image tile holding a working email-capture form with a success state, and a social-proof note.
comingsoon65
A waitlist coming-soon section with a monospace parenthetical eyebrow, a heading, a working email notify form, and a three-step numbered process explaining what happens after signing up.