Launch Party RSVP
A centered launch-party invitation on a soft muted card: a monospace eyebrow, a when/where details row, a working RSVP email form with a success state, a decorative "Add to calendar" pill button, and an overlapping avatar row showing who else is attending.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its avatar, avatar-initials, button dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/launch-party-rsvp.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon75.tsx instead.
Usage
The file also exports comingsoon75Demo, 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 { ComingSoon75, comingsoon75Demo } from "@/components/blocks/coming-soon/comingsoon75"; export default function Page() { return <ComingSoon75 {...comingsoon75Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "(launch party)" | Monospace label above the heading. |
| heading | string | "Celebrate the launch with us" | Card heading. |
| description | string | "Drinks, demos, and a first look..." | Supporting copy under the heading. |
| when | string | "Thursday, September 18, 6:00 PM" | Date/time row value. |
| where | string | "The Lookout Rooftop, Austin, TX" | Location row value. |
| attendees | PartyAttendee[] | none | Attendees shown in the overlapping avatar row, falling back to initials when no avatarSrc is given. |
| className | string | none | Extra classes for the outer section element. |
Types
export interface PartyAttendee { name: string; avatarSrc?: string; }
Behavior notes
- Real interactivity: a useState-driven email form swaps to a success message on submit, same pattern as the rest of the category's waitlist forms.
- The "Add to calendar" pill button is decorative, it has no onClick handler and creates no calendar file, matching the inert social-provider buttons in the auth blocks.
- The when/where details and the attendee list are both static props, AvatarFallback shows initials via initialsFromName whenever an attendee has no avatarSrc.
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.