From the founder
Nobodyhaseverwalkedintothisroomtooearly.Plentyofpeoplehavetoldmetheywishtheyhadcomesooner.Ifyouarereadingthisandwondering,thatisprobablythemoment.
Laura Marling
Founder and psychotherapist
A centred call to action built on a founder's words: a long serif quote that settles in word by word over a slowly drifting soft light, the founder's portrait and role beneath it, then a sliding-marker pill and a text link.
A founder quote as the whole call to action: the sentence settles in word by word at display size, then a portrait, a name and role, and a pill beside a quieter link.
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/cta100?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/cta100?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/cta100.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports cta100Demo alongside the block: the exact props behind the preview above. Spread it to get a working quote call to action in one line.
import { Cta100, cta100Demo } from "@/components/beste/block/cta100";
export default function Page() {
return <Cta100 {...cta100Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Cta100 } from "@/components/beste/block/cta100";
export default function Page() {
return (
<Cta100
eyebrow="From the founder"
quote="Nobody has ever walked into this room too early. Plenty of people have told me they wish they had come sooner."
author={{
name: "Laura Marling",
role: "Founder and psychotherapist",
avatar: { src: "/team/laura.jpg", alt: "Portrait of the founder" },
}}
button={{ label: "Come sooner", href: "/book", tone: "dark" }}
link={{ label: "Read the whole story", href: "/story" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the quote |
quote | string | – | The quote, rendered as a blockquote through Text1 |
author | Author | – | Portrait, name and role under the quote |
button | ActionButton | – | Pill action |
link | { label: string; href: string } | – | Quieter second action beside the pill |
className | string | – | Extra classes for the outer <section> |
type Author = {
name: string;
role: string;
avatar: { src: string; alt: string };
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};blockquote, not a heading, so a long sentence set at display size does not end up in the page outline as a section title.0.03s, faster than the component's default, because a quote runs to far more words than a heading and the default rhythm would leave the reader waiting.0.2 + quote.split(" ").length * 0.03, the same arithmetic, so the attribution lands exactly as the final word settles however long the quote is.motion-safe:, so the affordance is dropped for reduced motion while the link keeps working.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.
cta99
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.
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.
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.