Whenever you are ready
No forms, no commitment, no need to know what you want yet. Forty minutes to see whether this feels like a place you could talk.
Rated 4.9 by the people who stayed
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.
A closing invitation inside a deep panel: a photograph drifts behind an ink wash and film grain while the heading settles in word by word above the copy, a pill, a quieter mail link, and a row of stars with a trust line.
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/cta95?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/cta95?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/cta95.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports cta95Demo alongside the block: the exact props behind the preview above. Spread it to get a working closing call to action in one line.
import { Cta95, cta95Demo } from "@/components/beste/block/cta95";
export default function Page() {
return <Cta95 {...cta95Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Cta95 } from "@/components/beste/block/cta95";
export default function Page() {
return (
<Cta95
eyebrow="Whenever you are ready"
heading="The first conversation asks nothing of you."
description="No forms, no commitment, no need to know what you want yet."
button={{ label: "Book a first conversation", href: "/book" }}
link={{ label: "Or write to hello@beste.co", href: "mailto:hello@beste.co" }}
image={{ src: "/photos/valley.jpg", alt: "A wide green valley under soft evening light" }}
rating={5}
proof="Rated 4.9 by the people who stayed"
/>
);
}| 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, optionally with a Lucide icon |
link | SecondaryLink | – | Quieter underlined link under the pill |
image | { src: string; alt: string } | – | Photograph behind the panel |
rating | number | – | Rating out of five, drawn as that many filled stars |
proof | string | – | Trust line beside the stars |
className | string | – | Extra classes for the outer <section> |
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
icon?: LucideIcon;
};
type SecondaryLink = {
label: string;
href: string;
};rating is rounded and clamped into 0 to 5 before it is drawn, so a value out of range cannot render a hundred stars or a negative count.isolate context: photograph, a foreground/55 wash, grain, then the copy. The isolation is what keeps those negative z-indices from escaping into the page around it.-12% to 12% against a 1.25 scale and clears from blur(24px) on decode, with a complete check on mount because a cached image fires its load event before hydration.-15% viewport margin, later than most blocks in the set, so a closing panel this large is properly in view before it begins.0.3 + heading.split(" ").length * 0.05, matching the word stagger, so the paragraph lands as the last word of the heading does.cta96
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.
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.
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.
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.