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.
The plainest closing panel in the set: a soft rounded surface, a centred heading that settles in word by word, a short paragraph and a pair of pills, with no photograph and nothing to load.
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/cta101?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/cta101?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/cta101.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports cta101Demo alongside the block: the exact props behind the preview above. Spread it to get a working call to action in one line.
import { Cta101, cta101Demo } from "@/components/beste/block/cta101";
export default function Page() {
return <Cta101 {...cta101Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Cta101 } from "@/components/beste/block/cta101";
export default function Page() {
return (
<Cta101
eyebrow="Ready when you are"
heading="The room is here. The hour is yours."
description="Book a first conversation, or write to us if that feels easier."
buttons={[
{ label: "Book a conversation", href: "/book", tone: "dark" },
{ label: "Write to us", href: "mailto:hello@beste.co", tone: "outline" },
]}
/>
);
}| 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 |
buttons | ActionButton[] | [] | Pill actions, wrapped and centred |
className | string | – | Extra classes for the outer <section> |
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};delay={0.3} so it starts after the eyebrow instead of alongside it, and the paragraph then waits on 0.3 + heading.split(" ").length * 0.05 to land as the last word does.max-w-3xl inside a centred column, so a long sentence breaks into balanced lines instead of running the full width of the panel.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.
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.
cta105
The most compact call to action in the language: a single serif line that settles in word by word with an underlined text link beneath it, and a sliding-marker pill at the other end, all between two hairline rules.
cta15
Ultra-minimal call-to-action with a single bold heading and action button. Perfect for clean, distraction-free conversion sections.