Staaarter

Pricing Plan Explorer

A centered coming-soon screen letting visitors preview upcoming pricing tiers before launch. A pill-style plan switcher swaps the detail card below between plans, each showing a blurred, locked price and a checked feature list, with a notify-me button beneath.

By Staaarter Team
Coming Soon
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its button, badge dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/pricing-plan-explorer.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/coming-soon/comingsoon41.tsx instead.

Usage

The file also exports comingsoon41Demo, 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 { ComingSoon41, comingsoon41Demo } from "@/components/blocks/coming-soon/comingsoon41";

export default function Page() {
  return <ComingSoon41 {...comingsoon41Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstring"Coming soon"Small label above the heading.
headingstring"Explore our upcoming plans"Main heading.
descriptionstring"Pricing is locked in until launch..."Supporting copy under the heading.
plansPricingPlan[]nonePlans available in the switcher, in display order.
notifyLabelstring"Notify me at launch"Label for the call-to-action button.
classNamestringnoneExtra classes for the outer section element.

Types

export interface PricingPlan {
  id: string;
  name: string;
  price: string;
  cadence?: string;
  features: string[];
  badge?: string;
}

Behavior notes

  • The plan switcher is real client state: a pill button group tracks the selected plan id, and the detail card below re-renders from a lookup of the `plans` prop, defaulting to the first plan.
  • The price is intentionally rendered behind a `blur-sm` class to represent pricing that's locked until launch, it's not a real number reveal interaction.
  • The "Notify me at launch" button is decorative with no onClick handler.