Next Issue MagazinePRO

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.

ComingSoon53: Next Issue Magazine

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.

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

Base UI flavor

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

Quick start

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.

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

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

Props

PropTypeDefaultDescription
brandstringMasthead name rendered above the eyebrow
labelstringSquare eyebrow rendered via Badge6
labelsComingSoon53Labels{}Cover badge, contents title, and form placeholder and success strings
headingstringSubscribe heading
descriptionstringSupporting paragraph under the heading
contentsstring[][]Numbered contents list of upcoming pieces
imageImageItemCover image with an accent issue badge overlay
classNamestringExtra classes for the outer <section>
ts
type ImageItem = {
  src: string;
  alt: string;
};

type ComingSoon53Labels = {
  issueBadge?: string;
  contentsTitle?: string;
  placeholder?: string;
  success?: 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

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

comingsoon70

Newsletter Sample Issues

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.

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

comingsoon42

Podcast Launch Teaser

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.

PRO

comingsoon74

Version Two Relaunch

A relaunch coming-soon section with a centered square eyebrow and heading, a working early-access email form, and a grid of what's-new feature cards with icons.

PRO

comingsoon54

Locked Product Preview

A two-column coming-soon section with a square eyebrow, a heading and a working email notify form, beside a browser-window mockup showing a blurred, lock-badged product preview.