Launch FAQ Accordion
A centered, expandable FAQ list answering the questions visitors are most likely to ask about an upcoming launch (timing, waitlist perks, pricing, migration, support). Clicking a question expands its answer and collapses whichever other answer was open, keeping the list compact.
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/launch-faq-accordion.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon13.tsx instead.
Usage
The file also exports comingsoon13Demo, 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 { ComingSoon13, comingsoon13Demo } from "@/components/blocks/coming-soon/comingsoon13"; export default function Page() { return <ComingSoon13 {...comingsoon13Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "Coming soon" | Small label above the heading. |
| heading | string | "Launch FAQ" | Section heading. |
| description | string | "Answers to the questions we hear most..." | Section subheading. |
| faqs | FaqItem[] | none | FAQ entries to render; the first one is open by default. |
| className | string | none | Extra classes for the outer section element. |
Types
export interface FaqItem { id: string; question: string; answer: string; }
Behavior notes
- "use client". Real interactivity: a single `useState<string | null>` tracks which one FAQ id is open, so expanding one question collapses any other that was open (single-open accordion, not independent toggles). The first FAQ is open on initial render, computed inline from props rather than derived in an effect.
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.