Plain Terms Billing CTAPRO

A closing call to action held in one bordered container, with the promise and action across the top and a hairline split below pairing an image tile that floats a live payment card with a full table of billing terms.

Cta89: Plain Terms Billing CTA

A closing call to action held in one bordered container, with the promise and action across the top and a hairline split below pairing an image tile that floats a live payment card with a full table of billing terms.

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

Base UI flavor

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

This installs the block to components/beste/block/cta89.tsx, the receipt3 payment piece it floats on the tile (installed to components/beste/piece/receipt3.tsx), and the badge23 and button21 components it uses for the eyebrow and the action.

Quick start

The installed file exports cta89Demo alongside the block: the exact props behind the preview above. Spread it to get a working call to action in one line.

tsx
import { Cta89, cta89Demo } from "@/components/beste/block/cta89";

export default function Page() {
  return <Cta89 {...cta89Demo} />;
}

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

tsx
import { Cta89 } from "@/components/beste/block/cta89";
import { Receipt3 } from "@/components/beste/piece/receipt3";

export default function Page() {
  return (
    <Cta89
      badge={{ label: "Billing, in plain words" }}
      heading="You pay when the first clinic is taking real bookings"
      description="Not when you sign, and not when someone finishes a training session."
      button={{ label: "Start free", href: "/signup" }}
      media={
        <Receipt3
          status="Payment received"
          amount="$1,240.00"
          caption="Bramble Health · May care plan"
          rows={[{ label: "Method", value: "Visa ending 4417" }]}
        />
      }
      image={{ src: "/backdrops/blue.jpg", alt: "Soft blue gradient backdrop" }}
      termsLabel="The terms, all of them"
      terms={[
        { label: "Billing period", value: "Monthly, in arrears" },
        { label: "Minimum term", value: "None" },
        { label: "Data export", value: "Any time, full fidelity" },
      ]}
      finePrint="Seats can go up or down mid-month and we prorate both directions."
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow at the top of the container
headingstringSection heading, capped at max-w-2xl
descriptionstringSupporting paragraph, capped at max-w-xl
button{ label: string; href: string }Action across from the heading
mediaReactNodeLive asset on the tile, receipt3 in the demo
image{ src: string; alt: string }Backdrop behind the media tile
termsLabelstringSmall label above the terms table
termsTermRow[][]Label and value pairs in the terms table
finePrintstringClosing line under the table's own hairline
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type TermRow = {
  label: string;
  value: string;
};

Behavior notes

More CTA blocks

View all CTA
PRO

cta86

Contact And Availability CTA

A closing call to action splitting a bordered container between a hairline contact table and an inverted dark column that floats a live card naming the person you will meet above the booking action.

PRO

cta87

Resource Rows CTA

A closing call to action that offers three downloadable resources as full-width hairline rows, each a link with a short kicker, a format note, and an arrow that shifts on hover.

PRO

cta90

Multi-Site Coverage CTA

A closing call to action on a soft section that sets an image tile floating a live coverage card against three labelled columns of places, with the action under a hairline.

PRO

cta91

Handheld Reminder CTA

A closing call to action that leads with a narrow portrait tile floating a live phone frame, then sets centered copy and two actions beneath it over three hairline promises.

PRO

cta81

Launch Countdown CTA

A closing call to action with centered copy above two image tiles, one floating a live countdown and the other an inline email capture, closing on a line of fine print.

FREE

cta78

Studio Booking Split CTA

Closing call to action splitting a tall photo against an oversized heading, a short pitch, a pill CTA beside a plain email link, and a ruled two-column row stating reply time and next availability.