Staaarter

Next Issue Magazine

A split-screen coming-soon layout styled like a magazine launch page. One side shows a full-bleed cover photo with an issue-number badge, the other carries a masthead-style title, a numbered table of contents, and an email subscribe form with a success state.

By Staaarter Team
Coming Soon
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its badge, media-slot dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/next-issue-magazine.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon53.tsx instead.

Usage

The file also exports comingsoon53Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.

import { ComingSoon53, comingsoon53Demo } from "@/components/blocks/coming-soon/comingsoon53";

export default function Page() {
  return <ComingSoon53 {...comingsoon53Demo} />;
}

Props

PropTypeDefaultDescription
mastheadstring"THE DISPATCH"Large masthead-style title.
issueLabelstring"Issue 12"Badge label overlaid on the cover photo.
coverImageMediaSlotImagenoneFull-bleed cover photo for the magazine side.
headingstring"The next issue drops soon"Heading under the eyebrow.
contentsIssueContentItem[]noneNumbered table-of-contents rows (title + blurb).
classNamestringnoneExtra classes for the outer section element.

Types

export interface IssueContentItem {
  title: string;
  blurb: string;
}

Behavior notes

  • The email form is a real controlled input with a submit handler that flips local state to a success message, nothing is sent over the network.
  • The cover image and issue badge, and the numbered contents list, are static and non-interactive.
  • Below the lg breakpoint the two-column grid collapses to a single stacked column; the cover photo still renders, just above the text column instead of beside it.