Founder Quote CTA

From the founder

Nobodyhaseverwalkedintothisroomtooearly.Plentyofpeoplehavetoldmetheywishtheyhadcomesooner.Ifyouarereadingthisandwondering,thatisprobablythemoment.
Portrait of the founder

Laura Marling

Founder and psychotherapist

About this block

Founder Quote CTAPRO

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.

Cta100: Founder Quote CTA

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.

Upgrade Now

Installation

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

bash
npx shadcn add "https://ui.beste.co/r/cta100?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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" }}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the quote
quotestringThe quote, rendered as a blockquote through Text1
authorAuthorPortrait, name and role under the quote
buttonActionButtonPill action
link{ label: string; href: string }Quieter second action beside the pill
classNamestringExtra classes for the outer <section>
ts
type Author = {
  name: string;
  role: string;
  avatar: { src: string; alt: string };
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • The quote is rendered as a real blockquote, not a heading, so a long sentence set at display size does not end up in the page outline as a section title.
  • Its stagger is tightened to 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.
  • Everything after it waits on 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.
  • The author block is centred as a unit but its text is left aligned, so the name and role read as a signature rather than as two more centred lines.
  • The action row wraps and centres, so the pill and the link stack cleanly on a phone instead of the link shrinking beside the button.
  • The link's arrow lifts only under motion-safe:, so the affordance is dropped for reduced motion while the link keeps working.
  • Every part is optional, so this works as a bare quote, as a quote with an attribution, or as the full closing section.

More CTA blocks

View all CTA
PRO

cta104

Photo Button CTA

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.

PRO

cta99

Two Paths CTA

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.

PRO

cta105

One Line CTA

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.

PRO

cta102

Ruled Proof CTA

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.

PRO

cta20

Quote-Led CTA

Large testimonial quote as the hero element with call-to-action buttons below. Perfect for social proof driven conversion.

PRO

cta101

Soft Panel CTA

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.