Staaarter

Upcoming Writing Grid

A coming-soon screen for a blog or newsletter: a working email subscribe form with a success state sits above a three-card grid previewing upcoming articles. Each card shows a kind badge (Guide, Deep dive, Changelog), a title, and a short summary.

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 dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/upcoming-writing-grid.json

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

Usage

The file also exports comingsoon29Demo, 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 { ComingSoon29, comingsoon29Demo } from "@/components/blocks/coming-soon/comingsoon29";

export default function Page() {
  return <ComingSoon29 {...comingsoon29Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstring"(coming soon)"Monospace label above the heading.
headingstring"New writing, on its way"Main heading.
descriptionstring"Subscribe and we'll email you..."Supporting copy above the subscribe form.
articlesUpcomingArticle[]noneArticle preview cards rendered in the grid below the form.
classNamestringnoneExtra classes for the outer section element.

Types

export interface UpcomingArticle {
  kind: string;
  title: string;
  summary: string;
}

Behavior notes

  • The email form is real client state: submitting sets a `submitted` flag and swaps in a confirmation message, no network request is made.
  • The article grid below the form is fully static, the cards are non-interactive previews.