A closing call to action on a soft section that puts a live step tracker between centered copy and three hairline notes, then lands on a single action with its fine print.
A closing call to action on a soft section that puts a live step tracker between centered copy and three hairline notes, then lands on a single action with its fine print.
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/cta85?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/cta85?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/cta85.tsx, the progress16 step-tracker piece it floats on the tile (installed to components/beste/piece/progress16.tsx), and the badge23 and button21 components it uses for the eyebrow and the action.
The installed file exports cta85Demo alongside the block: the exact props behind the preview above. Spread it to get a working call to action in one line.
import { Cta85, cta85Demo } from "@/components/beste/block/cta85";
export default function Page() {
return <Cta85 {...cta85Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Cta85 } from "@/components/beste/block/cta85";
import { Progress16 } from "@/components/beste/piece/progress16";
export default function Page() {
return (
<Cta85
badge={{ label: "Four steps" }}
heading="You are one afternoon away from a live clinic"
description="Every practice went through the same four steps, and none took longer than a fortnight."
media={
<Progress16
title="Your migration"
steps={["Export", "Map fields", "Review", "Go live"]}
activeIndex={0}
caption="Step one is sending us whatever your current system will give up."
/>
}
image={{ src: "/backdrops/blue.jpg", alt: "Soft blue gradient backdrop" }}
notes={[
{
title: "You send, we read",
description: "Any export, any shape. We have not met a format that stopped us yet.",
},
{
title: "One hour together",
description: "Your lead and our engineer agree what each old field becomes.",
},
]}
button={{ label: "Start your migration", href: "/migrate" }}
finePrint="Nothing is charged until your first clinic is taking real bookings."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Centered eyebrow above the heading, rendered through Badge23 |
heading | string | – | Section heading, centered and capped at max-w-2xl |
description | string | – | Centered supporting paragraph, capped at max-w-xl |
media | ReactNode | – | Live asset on the tile, progress16 in the demo |
image | { src: string; alt: string } | – | Backdrop behind the media tile |
notes | StepNote[] | [] | Hairline notes explaining the steps |
button | { label: string; href: string } | – | Single centered action |
finePrint | string | – | Small line directly under the action |
className | string | – | Extra classes for the outer section |
type ActionLink = {
label: string;
href: string;
};
type StepNote = {
title: string;
description: string;
};bg-muted and the media tile is bg-background, inverting the usual relationship so the tile reads as raised against the section rather than recessed into it.max-w-2xl for the copy, max-w-3xl for the tile, max-w-4xl for the notes. That keeps the eye moving outward rather than presenting three items of the same width.flex flex-col items-center, so the button keeps its intrinsic width and the fine print sits centered directly under it rather than beside it.border-t, so the rules are per column and stop at the gaps.md:grid-cols-3, so three is the count the layout is tuned for. A fourth wraps onto a second row.activeIndex is passed to the piece as fixed copy.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.
cta19
Three-step process visualization with numbered steps and call-to-action. Perfect for showing how easy it is to get started.
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.
cta81
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.