Staaarter

Enterprise Custom Quote

A single, full-width card focused entirely on enterprise or custom pricing, deliberately showing no price. Pairs a headline and short description with a capability checklist (SSO, dedicated support, custom SLA, and similar) plus a primary "Talk to sales" CTA and a secondary link back to the standard plans.

By Staaarter Team
Pricing
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/enterprise-custom-quote.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/pricing/pricing18.tsx instead.

Usage

The file also exports pricing18Demo, 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 { Pricing18, pricing18Demo } from "@/components/blocks/pricing/pricing18";

export default function Page() {
  return <Pricing18 {...pricing18Demo} />;
}

Props

PropTypeDefaultDescription
eyebrowstringundefinedSmall badge above the heading, e.g. "Enterprise".
headingReactNodenoneMain headline.
descriptionstringundefinedSupporting subtext below the heading.
capabilitiesstring[]noneChecklist of enterprise-specific capabilities.
primaryCta{ label: string; href?: string }nonePrimary call to action, e.g. "Talk to sales".
secondaryCta{ label: string; href?: string }noneSecondary link-styled call to action, e.g. "View all plans".
classNamestringnoneExtra classes for the outer section element.

Behavior notes

  • No price is ever rendered by this block, that is intentional, it always frames enterprise pricing as a custom quote.
  • This block is fully static presentation with no interactivity.
  • Both CTAs are inert placeholders (href defaults to "#" in the demo); "Talk to sales" does not open a real contact form and "View all plans" does not navigate anywhere real.