A closing call to action that leads with a narrow portrait tile floating a live phone frame, then sets centered copy and two actions beneath it over three hairline promises.
A closing call to action that leads with a narrow portrait tile floating a live phone frame, then sets centered copy and two actions beneath it over three hairline promises.
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/cta91?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/cta91?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/cta91.tsx, the browser35 phone-frame piece it floats on the tile (installed to components/beste/piece/browser35.tsx), and the badge23 and button21 components it uses for the eyebrow and the actions.
The installed file exports cta91Demo alongside the block: the exact props behind the preview above. Spread it to get a working call to action in one line.
import { Browser35 } from "@/components/beste/piece/browser35";
import { Cta91, cta91Demo } from "@/components/beste/block/cta91";
export default function Page() {
return <Cta91 {...cta91Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Browser35 } from "@/components/beste/piece/browser35";
import { Cta91 } from "@/components/beste/block/cta91";
export default function Page() {
return (
<Cta91
badge={{ label: "For the member" }}
heading="Send them something they can actually use"
description="Every appointment leaves as a link that opens on any phone."
media={
<Browser35
time="09:41"
title="Appointment"
status="Confirmed"
headline="Wednesday, 14 May · 09:00"
rows={[
{ label: "With", value: "Dr Amelia Frost" },
{ label: "Room", value: "Clinic 2, ground floor" },
]}
/>
}
image={{ src: "/backdrops/blue.jpg", alt: "Soft blue gradient backdrop" }}
buttons={[
{ label: "See a live reminder", href: "/reminder" },
{ label: "Book a demo", href: "/demo", tone: "outline" },
]}
promises={[
{
title: "Nothing to install",
description: "It is a link. It opens in whatever browser is already on the phone.",
},
{
title: "Rescheduling in two taps",
description: "Members move themselves into a real opening.",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Centered eyebrow, below the tile rather than above it |
heading | string | – | Section heading, centered and capped at max-w-2xl |
description | string | – | Centered supporting paragraph, capped at max-w-xl |
media | ReactNode | – | Live asset on the portrait tile, browser35 in the demo |
image | { src: string; alt: string } | – | Backdrop behind the media tile |
buttons | ActionLink[] | [] | Centered actions in source order |
promises | PromiseItem[] | [] | Hairline promises under the actions |
className | string | – | Extra classes for the outer section |
type ButtonTone = "primary" | "neutral" | "outline";
type ActionLink = {
label: string;
href: string;
tone?: ButtonTone;
};
type PromiseItem = {
title: string;
description: string;
};media is the first child of the container.h-96 inside max-w-xs, so it reads as a handset rather than as a wide media band. It is centered with mx-auto rather than gridded.border-t, so the rules are per column and stop at the gaps.md:grid-cols-3, which is the count the layout is tuned for. A fourth wraps onto a second row.tone is honored when set, otherwise the first button renders primary and every later one renders outline.PromiseItem is named rather than being called Promise, since that would shadow the global Promise type inside the installed file.cta81
A closing call to action with centered copy above two image tiles, one floating a live countdown and the other an inline email capture, closing on a line of fine print.
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.
cta76
A centered call to action led by a floating plan price card on an image tile, followed by an eyebrow, a large light heading, a paragraph, two accent buttons, and a reassurance note.
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.