Animated Icons Preview
A playful, centered coming-soon screen with a row of icon tiles that bob up and down on a staggered delay, paired with a pulsing status dot and label to signal that a build is actively in progress.
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/animated-icons-preview.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon4.tsx instead.
Usage
The file also exports comingsoon4Demo, 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 { ComingSoon4, comingsoon4Demo } from "@/components/blocks/coming-soon/comingsoon4"; export default function Page() { return <ComingSoon4 {...comingsoon4Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "Coming soon" | Small label above the heading. |
| heading | string | "Something magical is loading" | Main heading. |
| description | string | "Our team is putting the final sparkle..." | Supporting copy under the heading. |
| statusLabel | string | "Build in progress" | Label next to the pulsing status dot. |
| className | string | none | Extra classes for the outer section element. |
Behavior notes
- Fully static and a plain Server Component: the bobbing icon tiles use Tailwind's `animate-bounce` with a per-icon inline `animationDelay` for stagger, and the status dot uses `animate-pulse`, both pure CSS with no client JS or framer-motion.
- The five icons are a fixed, hardcoded array rendered by position, not passed in as props.
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.
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.
launch-roadmap-timeline
Launch Roadmap Timeline
A centered coming-soon page with a vertical timeline of launch phases, each with a date, name, and status badge.