Newsletter Sample IssuesPRO

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.

ComingSoon70: Newsletter Sample 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.

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/comingsoon70?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeEyebrow badge rendered above the heading via Badge7
labelsComingSoon70Labels{}Issues title plus the form placeholder, success, and cadence strings
headingstringSection heading
descriptionstringSupporting paragraph under the heading
issuesIssueItem[][]Sample-issue cards shown in the grid below
classNamestringExtra classes for the outer <section>
ts
type IssueItem = {
  issue: string;
  title: string;
  summary: string;
};

type Badge = {
  label: string;
};

type ComingSoon70Labels = {
  issuesTitle?: string;
  placeholder?: string;
  success?: string;
  cadence?: string;
};

Behavior notes

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.

More Coming Soon blocks

View all Coming Soon
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

comingsoon53

Next Issue Magazine

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.

PRO

comingsoon15

Waitlist Coming Soon

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.

PRO

comingsoon65

What Happens Next Waitlist

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.

PRO

comingsoon49

Framed Editorial Launch

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.

PRO

comingsoon60

Portfolio Under Construction

A personal coming-soon page with a monospace parenthetical eyebrow, an oversized name, a role and tagline, an email contact pill button, a row of social links, and an availability status line.