Newsletter Sample Issues

(The newsletter)

A weekly letter on the craft of building things.

Notes on design, process, and the small decisions that add up. Subscribe before issue one and start from the very beginning.

One thoughtful issue every Sunday. Unsubscribe anytime.

(A peek at what's coming)

No. 01

The cost of one more feature

Why the best product decisions are the ones you talk yourself out of.

No. 02

Designing for the second week

Anyone can win day one. Retention is a design problem.

No. 03

Writing that ships

How clear copy quietly does the work of a dozen features.

About this block

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

  • The subscribe form owns its email state; 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.
  • On submit the pill-shaped form swaps for a bordered success capsule with a Check icon, and the cadence line hides once submitted since it renders only when cadence is set and the form is not yet submitted.
  • The sample-issues grid renders only when issues is non-empty, laying each entry into a fixed three-column card grid with its issue number, title, and summary.
  • Both the badge eyebrow and the issuesTitle render through Badge7, sharing the monospace parenthetical treatment.
  • Every region is optional: the eyebrow, heading, description, and issue grid each render only when their prop is present.
  • No inline markup is parsed: every string renders as plain text, so HTML passed in shows as escaped text.

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

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.