Upcoming Writing GridPRO

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.

ComingSoon29: Upcoming Writing Grid

A monochrome, editorial newsletter-forward pre-launch section that pairs a parenthetical eyebrow, a heading, and a subscribe pill button across the top, then lays a three-column grid of upcoming-article cards below, each with a kind label, title, and summary.

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

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/comingsoon29?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/comingsoon29.tsx.

Quick start

The installed file exports comingsoon29Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.

tsx
import { ComingSoon29, comingsoon29Demo } from "@/components/beste/block/comingsoon29";

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

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { ComingSoon29 } from "@/components/beste/block/comingsoon29";

export default function Page() {
  return (
    <ComingSoon29
      badge={{ label: "First to publish" }}
      heading="The writing we're releasing alongside the studio."
      description="Subscribe once and every piece below lands in your inbox the week it goes live."
      button={{ label: "Subscribe for updates", href: "/waitlist" }}
      topics={[
        {
          kind: "Field notes",
          title: "Why we deleted the dashboard",
          summary: "The case for a workspace that shows you the work, not a wall of numbers.",
        },
        {
          kind: "Playbook",
          title: "A brief that writes itself",
          summary: "The five prompts we ask before a single pixel gets drawn.",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Parenthetical eyebrow rendered above the heading via Badge7
headingstringSection heading in the intro row
descriptionstringSupporting paragraph under the heading
buttonActionLinkSubscribe pill link rendered via Button12
topicsTopicItem[][]Upcoming-article cards rendered in a three-column grid
classNamestringExtra classes for the outer <section>
ts
type ActionLink = {
  label: string;
  href: string;
};

type TopicItem = {
  kind: string;
  title: string;
  summary: string;
};

Behavior notes

More Coming Soon blocks

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

comingsoon48

Bento Launch Grid

A coming-soon bento grid with a large panel holding a wordmark, a monospace parenthetical eyebrow, a heading and a working email notify form, an image tile, and a dark social-proof tile with an avatar stack and waitlist count.

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

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

comingsoon27

Launch Roadmap Columns

A pre-launch roadmap laid out as three now-next-later columns with a monospace parenthetical eyebrow, a heading and changelog pill button on top, and ruled entry lists under each column header.

PRO

comingsoon19

Pre-Launch Manifesto

A pre-launch manifesto section on a soft muted card with a monospace parenthetical eyebrow, a large statement heading, and a three-column ruled list of numbered building principles above a follow-along pill button.