Coming Soon Client Marquee
A client wall that deliberately withholds the client logos: an oversized, low-opacity marquee repeats a placeholder label in an infinite CSS loop behind soft edge fades, under a monospace eyebrow, heading, and a short note. Direction and speed are both real props.
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/coming-soon-client-marquee.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon76.tsx instead.
Usage
The file also exports comingsoon76Demo, 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 { ComingSoon76, comingsoon76Demo } from "@/components/blocks/coming-soon/comingsoon76"; export default function Page() { return <ComingSoon76 {...comingsoon76Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "(coming soon)" | Monospace label above the heading. |
| heading | string | "Our client wall is under wraps" | Section heading. |
| note | string | "We're not ready to say who's on board yet..." | Short supporting note under the heading. |
| label | string | "Coming soon" | Text repeated across the marquee. |
| direction | "left" | "right" | "left" | Scroll direction of the marquee, mapped to animation-direction. |
| speed | number | 24 | Seconds per full marquee loop, mapped to animation-duration. |
| className | string | none | Extra classes for the outer section element. |
Behavior notes
- Plain Server Component: the marquee is pure CSS (a scoped @keyframes translateX loop plus animation-direction/animation-duration inline styles), no client JS runs.
- The label text is duplicated once so the loop is seamless, and the second copy is aria-hidden to avoid announcing the repeated text to screen readers.
- direction and speed are real props: direction flips animation-direction between normal/reverse, speed sets the animation-duration in seconds.
- Edge fades are two absolutely positioned gradient strips over the marquee track, purely decorative.
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.