Staaarter

Interest Selector Waitlist

A coming-soon screen set over a full-bleed background photo with a dark overlay. Visitors can toggle a set of interest chips to signal what they care about, then join the waitlist with a rounded, pill-shaped email capture form that shows a success state on submit.

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

npx shadcn add https://staaarter.com/r/interest-selector-waitlist.json

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

Usage

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

export default function Page() {
  return <ComingSoon30 {...comingsoon30Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstring"(coming soon)"Monospace label above the heading.
headingstring"Tell us what you're waiting for"Main heading.
descriptionstring"Pick the areas you care about..."Supporting copy under the heading.
imageMediaSlotImageundefinedFull-bleed background photo behind the dark overlay.
interestsstring[]noneToggleable interest chip labels.
classNamestringnoneExtra classes for the outer section element.

Behavior notes

  • The interest chips are real multi-select client state (useState<Set<string>>): each chip is a real button with aria-pressed that toggles independently.
  • The email form is real client state too: submitting sets a `submitted` flag and swaps in a confirmation message, no network request or selected-interests payload is actually sent anywhere.