Practices do not switch systems because the demo was good. They switch because someone they trust told them the move was survivable.
“We moved eleven years of records over a weekend and nobody had to work Monday twice.”
Elena Rourke
Practice lead, Bramble Health
A closing call to action set on a photographic panel with a directional gradient, pairing an eyebrow badge, light heading, and two actions with a live customer quote card.
A closing call to action set on a photographic panel with a directional gradient, pairing an eyebrow badge, light heading and two actions with a live customer quote card.
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/cta84?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/cta84?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/cta84.tsx, the socialproof26 quote piece it sets on the panel (installed to components/beste/piece/socialproof26.tsx), and the badge23 and button21 components it uses for the eyebrow and the actions.
The installed file exports cta84Demo alongside the block: the exact props behind the preview above. Spread it to get a working call to action in one line.
import { Cta84, cta84Demo } from "@/components/beste/block/cta84";
export default function Page() {
return <Cta84 {...cta84Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Cta84 } from "@/components/beste/block/cta84";
import { Socialproof26 } from "@/components/beste/piece/socialproof26";
export default function Page() {
return (
<Cta84
badge={{ label: "Bramble Health" }}
heading="The weekend nobody had to work twice"
description="Practices switch because someone they trust told them the move was survivable."
buttons={[
{ label: "Read the story", href: "/customers/bramble" },
{ label: "Book a demo", href: "/demo" },
]}
image={{ src: "/clinic/reception.jpg", alt: "A clinician in a bright clinic" }}
media={
<Socialproof26
quote="We moved eleven years of records over a weekend."
name="Elena Rourke"
role="Practice lead, Bramble Health"
avatar={{ src: "/people/elena.jpg", alt: "Portrait of Elena Rourke" }}
/>
}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow above the heading, retoned for the dark panel |
heading | string | – | Section heading on the panel |
description | string | – | Supporting paragraph under the heading |
buttons | ActionLink[] | [] | Actions in source order, first solid and the rest outlined |
image | { src: string; alt: string } | – | Photograph filling the panel |
media | ReactNode | – | Live asset in the right column, socialproof26 in the demo |
className | string | – | Extra classes for the outer section |
type ActionLink = {
label: string;
href: string;
};
type BandImage = {
src: string;
alt: string;
};from-foreground/90 on the left through to-foreground/30 on the right, so the copy sits on the dark end and the photograph stays visible behind the quote card. Flipping the layout means flipping the gradient direction too.bg-foreground underneath the image, so a slow-loading or missing photograph still leaves legible white text rather than a flash of unreadable contrast.aria-hidden and carries no content, sitting between the image and the z-10 content layer.1.4fr to 1fr split with lg:items-end, so the quote card aligns to the bottom of the copy column rather than floating at the top of the panel.primary, later ones are outline with an added border-background/30 so they read on the dark end of the gradient.lg the columns stack, and the quote card lands under the actions where the gradient is at its darkest, which is why the card keeps its own solid surface.cta73
A closing call to action on a soft panel, pairing an eyebrow, light heading, paragraph, and two accent buttons with an image tile that floats a live agenda micro-asset.
cta95
A closing call to action on a rounded photographic panel: the photo drifts under the panel as the page scrolls, soft light and film grain sit over it, and a centred serif heading settles in word by word above the intro, a pill button, an email link and a star rating line.
cta104
A call to action with the text above the picture: a centred serif heading that settles in word by word and an intro, then a wide rounded photograph drifting under a light scrim and film grain with a single large sliding-marker pill at its centre.
cta74
A centered call to action with an eyebrow pill, a large light heading, a short paragraph, and two accent buttons on a clean surface.