Founding Member Offer
A bordered pre-launch offer card aimed at converting visitors into founding members. It lists the offer's benefits with check icons, shows how many founding seats have already been claimed via a progress bar, and closes with a working email-capture form with a success state.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/founding-member-offer.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon23.tsx instead.
Usage
The file also exports comingsoon23Demo, 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 { ComingSoon23, comingsoon23Demo } from "@/components/blocks/coming-soon/comingsoon23"; export default function Page() { return <ComingSoon23 {...comingsoon23Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "Coming soon" | Small label above the heading. |
| heading | string | "Become a founding member" | Card heading. |
| description | string | "Lock in early-adopter pricing for life..." | Supporting copy under the heading. |
| benefits | string[] | none | Benefit lines rendered with a check icon each. |
| seatsClaimed | number | none | Number of founding seats already claimed. |
| seatsTotal | number | none | Total founding seats available. |
| className | string | none | Extra classes for the outer section element. |
Behavior notes
- The email form is real client state: typing updates a controlled input, and submitting swaps the form for a success message (useState only, nothing is sent over the network).
- The seats-claimed progress bar is fully static: its width and the "X of Y claimed" label are derived directly from the `seatsClaimed`/`seatsTotal` props at render time, with `seatsClaimed` clamped into range.
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.