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.
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.
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.
cta78
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.