Marquee Launch Hero
A centered coming-soon hero with a giant, low-opacity text marquee looping horizontally behind the content. On top sits a monospace eyebrow, a bold wordmark, a tagline, and a working email-notify 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/marquee-launch-hero.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon47.tsx instead.
Usage
The file also exports comingsoon47Demo, 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 { ComingSoon47, comingsoon47Demo } from "@/components/blocks/coming-soon/comingsoon47"; export default function Page() { return <ComingSoon47 {...comingsoon47Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "(coming soon)" | Monospace parenthetical eyebrow. |
| wordmark | string | "LAUNCHING SOON" | Bold foreground heading. |
| tagline | string | "Something new is on the way..." | Supporting copy under the wordmark. |
| marqueeText | string | "COMING SOON" | Text repeated in the looping background marquee. |
| marqueeSpeed | number | 28 | Marquee loop duration in seconds, lower is faster. |
| className | string | none | Extra classes for the outer section element. |
Behavior notes
- The marquee is pure CSS: a scoped @keyframes translateX loop on a duplicated, doubled-width text row (aria-hidden, non-interactive), no JavaScript animates it.
- The marqueeSpeed prop only changes the CSS animation-duration via an inline style, it is not read in any effect or event handler.
- The email form is the only real client state in this block: submitting sets `submitted` and swaps the form for a success message, nothing is sent over the network.
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.