Sneak Peek Feature Grid
A centered coming-soon screen that teases upcoming features without fully revealing them. Each card's title and description are blurred and overlaid with a lock icon and a "Locked" badge, hinting at what's coming without giving it away.
Docs
Installation
A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its badge dependencies and any missing npm packages, and installs them straight into your project.
npx shadcn add https://staaarter.com/r/sneak-peek-feature-grid.jsonPrefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon5.tsx instead.
Usage
The file also exports comingsoon5Demo, 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 { ComingSoon5, comingsoon5Demo } from "@/components/blocks/coming-soon/comingsoon5"; export default function Page() { return <ComingSoon5 {...comingsoon5Demo} />; }
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| eyebrow | string | "Coming soon" | Small label above the heading. |
| heading | string | "A sneak peek at what's next" | Main heading. |
| description | string | "A few of the features we're putting the finishing touches on." | Supporting copy under the heading. |
| features | SneakPeekFeature[] | none | Feature cards rendered blurred behind the lock overlay. |
| className | string | none | Extra classes for the outer section element. |
Types
export interface SneakPeekFeature { title: string; description: string; }
Behavior notes
- Fully static, plain Server Component: the blur is a CSS `blur-sm` class on the text content, with the lock badge absolutely positioned on top over a translucent backdrop, no JavaScript or reveal interaction.
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.
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.