Engagement Shapes With ExclusionsPRO

Three engagement columns on hairlines, each stating its figure and cadence and then listing what the price covers directly against what it deliberately does not.

Pricing74: Engagement Shapes With Exclusions

Three engagement columns on hairlines, each stating its figure and cadence and then listing what the price covers directly against what it deliberately does not.

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/pricing74?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/pricing74.tsx, the badge6 component used for the eyebrow and the button1 seal button under the columns.

Quick start

The installed file exports pricing74Demo alongside the block: the exact props behind the preview above. Spread it to get a working price list in one line.

tsx
import { Pricing74, pricing74Demo } from "@/components/beste/block/pricing74";

export default function PricingPage() {
  return <Pricing74 {...pricing74Demo} />;
}

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

tsx
import { Pricing74 } from "@/components/beste/block/pricing74";

export default function PricingPage() {
  return (
    <Pricing74
      eyebrow="Ways to work together"
      heading="Three shapes, and what each one is not"
      includedLabel="What it covers"
      excludedLabel="What it does not"
      shapes={[
        {
          name: "Project",
          price: "From £24,000",
          cadence: "Fixed price, fixed scope",
          summary: "A defined piece of work with a start and an end.",
          included: ["A named team for the whole run", "Weekly written updates"],
          excluded: ["Work added after the scope is signed"],
        },
      ]}
      button={{ label: "Start a conversation", href: "/contact" }}
      note="Prices are the same whoever is asking."
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringBadge6 label above the hairline rule
headingstringSection heading under the rule
includedLabelstringLabel over the covered list in every column
excludedLabelstringLabel over the excluded list
shapesShape[][]One column per engagement shape
buttonActionButtonSeal button under the columns
notestringLine beside the button
classNamestringExtra classes for the outer section
ts
type Shape = {
  name: string;
  price: string;
  cadence: string;
  summary: string;
  included: string[];
  excluded: string[];
};

type ActionButton = {
  label: string;
  href: string;
};

Behavior notes

More Pricing blocks

View all Pricing
PRO

pricing69

Engagement Tier Rails

Boxless pricing where each tier is a ruled column: the name, an oversized figure with its period, a fit line, an inclusion list under a second rule and a pill CTA, with subgrid keeping every internal rule aligned across the three columns.

PRO

pricing65

Monochrome Pricing Tiers

Three monochrome engagement tiers with editorial big-number pricing and an inverted featured plan.

PRO

pricing60

Three Tiers

Three pricing tiers with an emphasized popular plan and feature lists.

PRO

pricing72

Single Plan With Full Inclusion List

A one-plan pricing panel that sets an oversized light figure and two actions beside an image tile floating a live savings card, then lists everything included as three hairline groups below.

PRO

pricing63

Two Engagement Plans

Two large contrasting plan panels (light vs dark) for engagement models.

PRO

pricing61

Billing Toggle Pricing

Three plans with a monthly/yearly billing toggle and feature lists.

Markdown version