Sneak Peek Feature Grid

Sneak Peek

A glimpse of what's next

We've been building new capabilities behind the scenes. Here's a preview of what's coming to the platform.

2 of 6 features revealed

Advanced Analytics

Deep insights into your data with real-time dashboards

Global CDN

Lightning-fast delivery across 200+ edge locations

Coming soon

Enterprise Security

SOC 2 compliance and advanced threat protection

Coming soon

AI Assistant

Intelligent copilot built into your workflow

Coming soon

Design System

Fully customizable components and themes

Coming soon

Team Collaboration

Real-time editing and shared workspaces

More features to be announced soon
About this block

Sneak Peek Feature GridPRO

Coming soon section with a grid of blurred sneak-peek feature cards and lock overlays that tease upcoming features. Perfect for building anticipation by showing what's coming without revealing full details.

ComingSoon5: Sneak Peek Feature Grid

A centered coming-soon section that stacks a badge, heading, description, and a revealed-count line above a responsive grid of feature cards, where unrevealed cards blur their contents behind a lock overlay, and closes with a pulsing-dot footer note.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Upgrade Now

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/comingsoon5?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/comingsoon5?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/comingsoon5.tsx.

Quick start

The installed file exports comingsoon5Demo alongside the block: the exact props behind the preview above. Spread it to get a working sneak-peek grid in one line.

tsx
import { ComingSoon5, comingsoon5Demo } from "@/components/beste/block/comingsoon5";

export default function Page() {
  return <ComingSoon5 {...comingsoon5Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { BarChart3, Lock } from "lucide-react";
import { ComingSoon5 } from "@/components/beste/block/comingsoon5";

export default function Page() {
  return (
    <ComingSoon5
      badge={{ label: "Sneak peek", variant: "secondary" }}
      heading="A glimpse of what's next"
      description="A preview of the capabilities we're building behind the scenes."
      features={[
        {
          icon: <BarChart3 className="size-6" />,
          title: "Advanced analytics",
          hint: "Real-time dashboards over your data",
          revealed: true,
        },
        {
          icon: <Lock className="size-6" />,
          title: "Enterprise security",
          hint: "SOC 2 compliance and threat protection",
          revealed: false,
        },
      ]}
      labels={{
        revealedCount: "{revealed} of {total} features revealed",
        comingSoon: "Coming soon",
      }}
      footerText="More features to be announced soon"
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Eyebrow badge rendered above the heading via shadcn Badge
headingstringSection heading
descriptionstringSupporting paragraph under the heading
featuresFeaturePreview[][]Grid of sneak-peek feature cards
labels{ revealedCount?: string; comingSoon?: string }Templated count line and the lock-overlay text
footerTextstringFooter note beside a pulsing dot
classNamestringExtra classes for the outer <section>
ts
interface FeaturePreview {
  icon: React.ReactNode;
  title: string;
  hint: string;
  revealed?: boolean;
}

Behavior notes

  • The revealed-count line derives revealedCount from features.filter((f) => f.revealed).length, then interpolates it into labels.revealedCount by replacing the {revealed} and {total} tokens with the counts.
  • Each card branches on feature.revealed: revealed cards use a solid bg-card surface, while unrevealed cards get a dashed border, a backdrop-blur-[2px] overlay with a Lock icon and the comingSoon label, and their content dimmed to opacity-40 select-none.
  • The feature grid, its count line, and each card only render when features.length > 0; the badge, heading, description, and footer each render only when their prop is present.
  • The grid is a fixed responsive layout stepping from one column to sm:grid-cols-2 to lg:grid-cols-3, and every card carries the caller-supplied icon node in a rounded tile beside its title.
  • footerText renders with an animate-pulse dot, and every string is plain text with no inline markup parsing, so HTML passed in shows as escaped text.
  • Uses the shadcn Badge primitive for the eyebrow and lucide icons for the per-feature and lock glyphs.

More Coming Soon blocks

View all Coming Soon
PRO

comingsoon29

Upcoming Writing Grid

A newsletter-forward pre-launch section with a monospace parenthetical eyebrow, a heading and subscribe pill button on top, and a three-card grid of upcoming articles each with a kind label, title, and summary.

PRO

comingsoon54

Locked Product Preview

A two-column coming-soon section with a square eyebrow, a heading and a working email notify form, beside a browser-window mockup showing a blurred, lock-badged product preview.

PRO

comingsoon63

Product Pre-Order Teaser

A product launch coming-soon section with a full-height product image beside a monospace parenthetical eyebrow, a product name, a tagline, a ship date, a working notify email form, and a spec grid.

PRO

comingsoon52

Image Mosaic Notify

A coming-soon section with a full-bleed image mosaic background under a dark overlay and a centered card holding a square eyebrow, a heading, a description, and a working email notify form with a success state.

PRO

comingsoon48

Bento Launch Grid

A coming-soon bento grid with a large panel holding a wordmark, a monospace parenthetical eyebrow, a heading and a working email notify form, an image tile, and a dark social-proof tile with an avatar stack and waitlist count.

PRO

comingsoon33

Video Teaser Reveal

A full-bleed image pre-launch teaser with a dark overlay, a monospace parenthetical eyebrow, a central play button that opens the teaser video in a modal, a heading and supporting line, and a light outline waitlist pill button.