A two-panel call to action inside one rounded frame: a soft muted panel with a serif heading that settles in word by word, an intro, a sliding-marker pill and dotted reassurances, beside a photograph that drifts inside its half as the page scrolls.
A two-up call to action: copy, a pill and a short list of reassurances on a soft panel, with a square photograph drifting inside the other half of the same rounded frame.
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/cta96?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/cta96?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/cta96.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports cta96Demo alongside the block: the exact props behind the preview above. Spread it to get a working call to action in one line.
import { Cta96, cta96Demo } from "@/components/beste/block/cta96";
export default function Page() {
return <Cta96 {...cta96Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Cta96 } from "@/components/beste/block/cta96";
export default function Page() {
return (
<Cta96
eyebrow="A first step"
heading="One call. No decisions required."
description="Twenty minutes to hear what brings you here and to say, honestly, whether we are the right place."
button={{ label: "Book the twenty minutes", href: "/call", tone: "dark" }}
notes={["Free, always", "Phone or video", "Nothing is booked afterwards unless you ask"]}
image={{ src: "/photos/forest.jpg", alt: "Sunlight falling through tall trees onto a forest floor" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
description | string | – | Paragraph under the heading |
button | ActionButton | – | Pill action |
notes | string[] | [] | Bulleted reassurances under the button |
image | { src: string; alt: string } | – | Photograph filling the other half |
className | string | – | Extra classes for the outer <section> |
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};overflow-hidden rounded-md wrapper, so the photograph is clipped by the panel's own corners and no radius has to be repeated on the image.flex with justify-between, so the button and its notes are pinned to the foot of the panel and stay level with the bottom of the photograph however short the copy is.delay={0.3} so it starts after the eyebrow rather than with it, and the paragraph then waits on 0.3 + heading.split(" ").length * 0.05 to land as the last word settles.-10% to 10% against a 1.2 scale inside a half that has no fixed aspect ratio: it takes its height from the copy beside it from md up, and falls back to min-h-[20rem] on a phone.ul with dot markers drawn as spans, so the list keeps its semantics without inheriting browser bullet styling that would not match the type.blur(24px) on decode, with a complete check on mount so a cached image is never left blurred.image the copy panel simply takes the full width of the rounded frame.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.
cta101
The simplest call to action in the language: one soft muted panel with a centred eyebrow, a serif heading that settles in word by word, an intro and two sliding-marker pills.
cta84
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.