Photo Band Story CTA

A healthcare professional smiling in a bright clinic
Bramble Health

The weekend nobody had to work twice

Practices do not switch systems because the demo was good. They switch because someone they trust told them the move was survivable.

We moved eleven years of records over a weekend and nobody had to work Monday twice.

Portrait of Elena Rourke

Elena Rourke

Practice lead, Bramble Health

About this block

Photo Band Story CTAPRO

A closing call to action set on a photographic panel with a directional gradient, pairing an eyebrow badge, light heading, and two actions with a live customer quote card.

Cta84: Photo Band Story CTA

A closing call to action set on a photographic panel with a directional gradient, pairing an eyebrow badge, light heading and two actions with a live customer quote card.

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

Base UI flavor

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

This installs the block to components/beste/block/cta84.tsx, the socialproof26 quote piece it sets on the panel (installed to components/beste/piece/socialproof26.tsx), and the badge23 and button21 components it uses for the eyebrow and the actions.

Quick start

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

tsx
import { Cta84, cta84Demo } from "@/components/beste/block/cta84";

export default function Page() {
  return <Cta84 {...cta84Demo} />;
}

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

tsx
import { Cta84 } from "@/components/beste/block/cta84";
import { Socialproof26 } from "@/components/beste/piece/socialproof26";

export default function Page() {
  return (
    <Cta84
      badge={{ label: "Bramble Health" }}
      heading="The weekend nobody had to work twice"
      description="Practices switch because someone they trust told them the move was survivable."
      buttons={[
        { label: "Read the story", href: "/customers/bramble" },
        { label: "Book a demo", href: "/demo" },
      ]}
      image={{ src: "/clinic/reception.jpg", alt: "A clinician in a bright clinic" }}
      media={
        <Socialproof26
          quote="We moved eleven years of records over a weekend."
          name="Elena Rourke"
          role="Practice lead, Bramble Health"
          avatar={{ src: "/people/elena.jpg", alt: "Portrait of Elena Rourke" }}
        />
      }
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the heading, retoned for the dark panel
headingstringSection heading on the panel
descriptionstringSupporting paragraph under the heading
buttonsActionLink[][]Actions in source order, first solid and the rest outlined
image{ src: string; alt: string }Photograph filling the panel
mediaReactNodeLive asset in the right column, socialproof26 in the demo
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type BandImage = {
  src: string;
  alt: string;
};

Behavior notes

  • The gradient is directional rather than uniform: from-foreground/90 on the left through to-foreground/30 on the right, so the copy sits on the dark end and the photograph stays visible behind the quote card. Flipping the layout means flipping the gradient direction too.
  • The panel keeps bg-foreground underneath the image, so a slow-loading or missing photograph still leaves legible white text rather than a flash of unreadable contrast.
  • The gradient element is aria-hidden and carries no content, sitting between the image and the z-10 content layer.
  • The row is a 1.4fr to 1fr split with lg:items-end, so the quote card aligns to the bottom of the copy column rather than floating at the top of the panel.
  • Button tones are positional and not overridable: the first is primary, later ones are outline with an added border-background/30 so they read on the dark end of the gradient.
  • Below lg the columns stack, and the quote card lands under the actions where the gradient is at its darkest, which is why the card keeps its own solid surface.

More CTA blocks

View all CTA
PRO

cta73

Closing CTA Panel

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.

PRO

cta95

Parallax Panel CTA

A closing call to action on a rounded photographic panel: the photo drifts under the panel as the page scrolls, soft light and film grain sit over it, and a centred serif heading settles in word by word above the intro, a pill button, an email link and a star rating line.

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

cta74

Centered Closing CTA

A centered call to action with an eyebrow pill, a large light heading, a short paragraph, and two accent buttons on a clean surface.

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.

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.