Two ways to begin
Twenty minutes, free, on the phone or on video. The quickest way to find out whether this is the right room for you.
A call to action that offers two doors: under a serif heading that settles in word by word, two soft muted cards each with a serif title, a description and a sliding-marker pill, the first topped by a photograph that drifts inside its frame as the page scrolls.
Two ways to begin, side by side: each path is a soft panel with an optional photograph that drifts inside its frame, a serif title, a short explanation and its own pill, with the buttons pinned to a shared baseline.
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/cta99?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/cta99?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/cta99.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports cta99Demo alongside the block: the exact props behind the preview above. Spread it to get a working two-path call to action in one line.
import { Cta99, cta99Demo } from "@/components/beste/block/cta99";
export default function Page() {
return <Cta99 {...cta99Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Cta99 } from "@/components/beste/block/cta99";
export default function Page() {
return (
<Cta99
eyebrow="Two ways to begin"
heading="Talk to us, or write first. Both are fine."
paths={[
{
title: "Book a first conversation",
description: "Twenty minutes, free, on the phone or on video.",
button: { label: "Choose a time", href: "/call", tone: "dark" },
image: { src: "/rooms/ledge.jpg", alt: "A ceramic vessel on a plaster ledge" },
},
{
title: "Write to us instead",
description: "If saying it out loud feels like too much for now, an email is a fine first step.",
button: { label: "Send an email", 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 |
paths | Path[] | [] | The paths, two across from md |
className | string | – | Extra classes for the outer <section> |
type Path = {
title: string;
description: string;
button: ActionButton;
image?: { src: string; alt: string };
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};flex-1 and the button is pushed down by mt-auto.16/9 frame on a bg-background/50 placeholder, so the empty frame reads as a lighter inset of the panel rather than as a grey hole while the file loads.-10% to 10% against a 1.2 scale, so two cards do not move in lockstep.0.15s stagger by index, so the second option arrives after the first has been read.h3 under the section h2, keeping the outline correct wherever the block sits on a page.md, so a third path wraps to a new row rather than shrinking the first two.cta102
A call to action between two hairline rules: a serif heading that settles in word by word and an intro on the left, a sliding-marker pill with an avatar cluster, a star row and a proof line on the right.
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.
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.
cta83
A closing call to action offering two routes as side-by-side cards, each with an icon tile, a short kicker, a checked list on hairlines, and its own action, with the recommended route outlined in the accent.