We've been building new capabilities behind the scenes. Here's a preview of what's coming to the platform.
Deep insights into your data with real-time dashboards
Lightning-fast delivery across 200+ edge locations
SOC 2 compliance and advanced threat protection
Intelligent copilot built into your workflow
Fully customizable components and themes
Real-time editing and shared workspaces
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.
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.
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
npx shadcn add "https://ui.beste.co/r/comingsoon5?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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"
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Eyebrow badge rendered above the heading via shadcn Badge |
heading | string | – | Section heading |
description | string | – | Supporting paragraph under the heading |
features | FeaturePreview[] | [] | Grid of sneak-peek feature cards |
labels | { revealedCount?: string; comingSoon?: string } | – | Templated count line and the lock-overlay text |
footerText | string | – | Footer note beside a pulsing dot |
className | string | – | Extra classes for the outer <section> |
interface FeaturePreview {
icon: React.ReactNode;
title: string;
hint: string;
revealed?: boolean;
}revealedCount from features.filter((f) => f.revealed).length, then interpolates it into labels.revealedCount by replacing the {revealed} and {total} tokens with the counts.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.features.length > 0; the badge, heading, description, and footer each render only when their prop is present.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.Badge primitive for the eyebrow and lucide icons for the per-feature and lock glyphs.comingsoon29
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.
comingsoon54
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.
comingsoon63
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.
comingsoon52
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.