Pre-Launch Manifesto
A pre-launch manifesto card on a soft muted surface: a monospace eyebrow and a large statement heading up top, followed by a three-column ruled list of numbered building principles, and a decorative rounded "Follow along" pill link at the bottom.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its button dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/pre-launch-manifesto.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon19.tsx instead.
Usage
The file also exports comingsoon19Demo, 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 { ComingSoon19, comingsoon19Demo } from "@/components/blocks/coming-soon/comingsoon19"; export default function Page() { return <ComingSoon19 {...comingsoon19Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "(coming soon)" | Monospace label above the heading. |
| heading | string | "We're building something we'd want to use ourselves" | Large statement heading. |
| principles | ManifestoPrinciple[] | none | Numbered building principles rendered in three ruled columns. |
| followLabel | string | "Follow along" | Pill link label. |
| followHref | string | "#" | Link target for the pill link. |
| className | string | none | Extra classes for the outer section element. |
Types
interface ManifestoPrinciple { title: string; description: string; }
Behavior notes
- Fully static Server Component: the pill link is a plain link (render={<Link href={followHref} />}) with no onClick, nothing is submitted anywhere.
- Principle numbers (01, 02, 03...) are computed from array index, not stored on each item.
- The three columns are divided by vertical rules (divide-x) at the sm breakpoint and up, and stack with horizontal rules (divide-y) on mobile.
More Coming Soon Blocks
View all →countdown-timer-launch
Countdown Timer Launch
A centered launch page with a live days/hours/minutes/seconds countdown to a target date.
development-progress-milestones
Development Progress Milestones
A centered launch page with an overall progress bar and a milestone tracker list with status badges.
social-connect-launch
Social Connect Launch
A centered coming-soon page with pill-style outline buttons linking out to Twitter, GitHub, LinkedIn, and email.
animated-icons-preview
Animated Icons Preview
A centered coming-soon page with a row of bobbing icon tiles and a pulsing build-status indicator.
sneak-peek-feature-grid
Sneak Peek Feature Grid
A centered coming-soon page with a grid of blurred feature cards teased behind a lock icon overlay.
waitlist-with-avatars
Waitlist with Avatars
A centered coming-soon page with a working waitlist signup form, stacked subscriber avatars, and a live join count.