Ruled Proof CTA

Mostpeoplewishtheyhadcomesooner.

You do not need a reason, a diagnosis or a plan. You need twenty free minutes and a phone.

Take the twenty minutes
Portrait of a client
Portrait of a client
Portrait of a client
Portrait of a client

4.9 from 140 people this year

About this block

Ruled Proof CTAPRO

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.

Cta102: Ruled Proof CTA

A closing band ruled top and bottom rather than filled: the heading and its line on one side, and on the other a pill above a row of avatars, a short star rating and a count.

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/cta102?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/cta102.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

The installed file exports cta102Demo alongside the block: the exact props behind the preview above. Spread it to get a working call to action in one line.

tsx
import { Cta102, cta102Demo } from "@/components/beste/block/cta102";

export default function Page() {
  return <Cta102 {...cta102Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Cta102 } from "@/components/beste/block/cta102";

export default function Page() {
  return (
    <Cta102
      heading="Most people wish they had come sooner."
      description="You do not need a reason, a diagnosis or a plan. You need twenty free minutes and a phone."
      button={{ label: "Take the twenty minutes", href: "/call", tone: "dark" }}
      avatars={[{ src: "/people/one.jpg", alt: "Portrait of a client" }]}
      rating={5}
      proof="4.9 from 140 people this year" 
    />
  );
}

Props

PropTypeDefaultDescription
headingstringSection heading, rendered as an h2 through Text1
descriptionstringParagraph under the heading
buttonActionButtonPill action
avatarsAvatar[][]Overlapping client portraits
ratingnumberRating out of five, drawn as that many filled stars
proofstringCount printed under the stars
classNamestringExtra classes for the outer <section>
ts
type Avatar = {
  src: string;
  alt: string;
};

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

Behavior notes

  • The section is drawn with a border-y on the inner grid instead of a filled panel, so it reads as a rule across the page and sits comfortably between two sections that already use surfaces.
  • rating is rounded and clamped into 0 to 5 before drawing, so an out-of-range value cannot produce a wall of stars or a negative count.
  • Only filled stars are drawn, with no empty track behind them, so three stars read as three marks rather than as three out of five.
  • The stars are size-3.5 and sit directly above the proof line rather than beside it, which keeps them subordinate to the sentence instead of competing with the heading for attention.
  • The avatar stack carries shrink-0, so a long proof line wraps rather than compressing the portraits.
  • The two columns are vertically centred, so a short right column stays level with a two-line heading instead of riding at its top.
  • There is no eyebrow prop here on purpose: the block is meant to be the quietest closing band in the set, and the heading opens it directly.

More CTA blocks

View all CTA
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

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

cta86

Contact And Availability CTA

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.

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.

PRO

cta96

Half Photo CTA

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.