Multi-Site Coverage CTAPRO

A closing call to action on a soft section that sets an image tile floating a live coverage card against three labelled columns of places, with the action under a hairline.

Cta90: Multi-Site Coverage CTA

A closing call to action on a soft section that sets an image tile floating a live coverage card against three labelled columns of places, with the action under a hairline.

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

Base UI flavor

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

This installs the block to components/beste/block/cta90.tsx, the location8 coverage piece it floats on the tile (installed to components/beste/piece/location8.tsx), and the badge23 and button21 components it uses for the eyebrow and the action.

Quick start

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

tsx
import { Cta90, cta90Demo } from "@/components/beste/block/cta90";

export default function Page() {
  return <Cta90 {...cta90Demo} />;
}

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

tsx
import { Cta90 } from "@/components/beste/block/cta90";
import { Location8 } from "@/components/beste/piece/location8";

export default function Page() {
  return (
    <Cta90
      badge={{ label: "Where we already run" }}
      heading="Add the second site without asking anyone's permission"
      description="Sites are a setting rather than a contract change."
      media={
        <Location8
          title="Sites on this plan"
          region="United Kingdom"
          sites={[
            { name: "Bramble Health", meta: "Bristol", value: "6 rooms" },
            { name: "Kingsway Clinic", meta: "Leeds", value: "4 rooms" },
          ]}
          total="13"
          totalLabel="rooms live across three sites"
        />
      }
      image={{ src: "/backdrops/green.jpg", alt: "Deep green gradient backdrop" }}
      regions={[
        { label: "England", places: ["Bristol", "Leeds", "Southampton"] },
        { label: "Scotland and Wales", places: ["Glasgow", "Cardiff"] },
        { label: "Ireland", places: ["Dublin", "Cork", "Galway"] },
      ]}
      button={{ label: "Talk about a group rollout", href: "/contact" }}
      finePrint="Data stays in the region you choose."
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the heading, rendered through Badge23
headingstringSection heading, capped at max-w-2xl
descriptionstringSupporting paragraph, capped at max-w-xl
mediaReactNodeLive asset on the tile, location8 in the demo
image{ src: string; alt: string }Backdrop behind the media tile
regionsRegionColumn[][]Labelled columns of place names
button{ label: string; href: string }Action under the closing hairline
finePrintstringSmall line under the action
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type RegionColumn = {
  label: string;
  places: string[];
};

Behavior notes

More CTA blocks

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

cta13

Multi-Card CTA

Multiple action cards with different tiers or options side by side. Perfect for offering multiple paths like free trial, demo booking, and enterprise contact.

PRO

cta87

Resource Rows CTA

A closing call to action that offers three downloadable resources as full-width hairline rows, each a link with a short kicker, a format note, and an arrow that shifts on hover.

PRO

cta85

Migration Process CTA

A closing call to action on a soft section that puts a live step tracker between centered copy and three hairline notes, then lands on a single action with its fine print.

PRO

cta89

Plain Terms Billing CTA

A closing call to action held in one bordered container, with the promise and action across the top and a hairline split below pairing an image tile that floats a live payment card with a full table of billing terms.

PRO

cta81

Launch Countdown CTA

A closing call to action with centered copy above two image tiles, one floating a live countdown and the other an inline email capture, closing on a line of fine print.