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.
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.
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/cta89?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow at the top of the container |
heading | string | – | Section heading, capped at max-w-2xl |
description | string | – | Supporting paragraph, capped at max-w-xl |
button | { label: string; href: string } | – | Action across from the heading |
media | ReactNode | – | Live asset on the tile, receipt3 in the demo |
image | { src: string; alt: string } | – | Backdrop behind the media tile |
termsLabel | string | – | Small label above the terms table |
terms | TermRow[] | [] | Label and value pairs in the terms table |
finePrint | string | – | Closing line under the table's own hairline |
className | string | – | Extra classes for the outer section |
type ActionLink = {
label: string;
href: string;
};
type TermRow = {
label: string;
value: string;
};gap-px over a bg-border container with bg-card cells, so the divider is the background showing through rather than a border on either cell. That keeps it a single hairline at the join instead of two stacked rules.flex flex-col and their contents are flex-1, which is what makes the tile grow to match the terms table beside it. The tile uses min-h-64 rather than a fixed height so it can stretch rather than crop.border-t with first:border-t-0 first:pt-0, so the table opens flush under its label with no leading rule.finePrint carries its own border-t and top padding, which closes the terms table and separates the caveat from the rows above it.md:items-end, so the action aligns to the baseline of the paragraph rather than the top of the block, and shrink-0 keeps the button at full width while the heading wraps.lg:grid-cols-2, so on tablet the tile stacks above the terms table rather than squeezing both into half the width.cta86
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.
cta87
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.
cta90
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.
cta91
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.