A closing call to action on a soft section that sets an image tile floating a live coverage card against three labelled columns of places, with the action under a hairline.
A closing call to action on a soft section that sets an image tile floating a live coverage card against three labelled columns of places, with the action under a hairline.
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/cta90?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/cta90?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/cta90.tsx, the location8 coverage piece it floats on the tile (installed to components/beste/piece/location8.tsx), and the badge23 and button21 components it uses for the eyebrow and the action.
The installed file exports cta90Demo alongside the block: the exact props behind the preview above. Spread it to get a working call to action in one line.
import { Cta90, cta90Demo } from "@/components/beste/block/cta90";
export default function Page() {
return <Cta90 {...cta90Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Cta90 } from "@/components/beste/block/cta90";
import { Location8 } from "@/components/beste/piece/location8";
export default function Page() {
return (
<Cta90
badge={{ label: "Where we already run" }}
heading="Add the second site without asking anyone's permission"
description="Sites are a setting rather than a contract change."
media={
<Location8
title="Sites on this plan"
region="United Kingdom"
sites={[
{ name: "Bramble Health", meta: "Bristol", value: "6 rooms" },
{ name: "Kingsway Clinic", meta: "Leeds", value: "4 rooms" },
]}
total="13"
totalLabel="rooms live across three sites"
/>
}
image={{ src: "/backdrops/green.jpg", alt: "Deep green gradient backdrop" }}
regions={[
{ label: "England", places: ["Bristol", "Leeds", "Southampton"] },
{ label: "Scotland and Wales", places: ["Glasgow", "Cardiff"] },
{ label: "Ireland", places: ["Dublin", "Cork", "Galway"] },
]}
button={{ label: "Talk about a group rollout", href: "/contact" }}
finePrint="Data stays in the region you choose."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow above the heading, rendered through Badge23 |
heading | string | – | Section heading, capped at max-w-2xl |
description | string | – | Supporting paragraph, capped at max-w-xl |
media | ReactNode | – | Live asset on the tile, location8 in the demo |
image | { src: string; alt: string } | – | Backdrop behind the media tile |
regions | RegionColumn[] | [] | Labelled columns of place names |
button | { label: string; href: string } | – | Action under the closing hairline |
finePrint | string | – | Small line under the action |
className | string | – | Extra classes for the outer section |
type ActionLink = {
label: string;
href: string;
};
type RegionColumn = {
label: string;
places: string[];
};bg-muted and the tile is bg-background, so the tile reads as raised against the section rather than recessed into it.border-t, so the hairline belongs to the heading rather than sitting above the group as a separate divider.sm, not md, because place names are short enough to fit early. Column lengths are not balanced, so a five-item column simply runs longer than a three-item one.1fr to 1.4fr split, giving the region columns more width than the tile, since three columns of names need more room than one card.items-start, so Button21 keeps its intrinsic width with the fine print underneath at the same left edge.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.
cta13
Multiple action cards with different tiers or options side by side. Perfect for offering multiple paths like free trial, demo booking, and enterprise contact.
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.
cta85
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.