Migration Process CTAPRO

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.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/cta85.tsx, the progress16 step-tracker piece it floats on the tile (installed to components/beste/piece/progress16.tsx), and the badge23 and button21 components it uses for the eyebrow and the action.

Quick start

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

tsx
import { Cta85, cta85Demo } from "@/components/beste/block/cta85";

export default function Page() {
  return <Cta85 {...cta85Demo} />;
}

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

tsx
import { Cta85 } from "@/components/beste/block/cta85";
import { Progress16 } from "@/components/beste/piece/progress16";

export default function Page() {
  return (
    <Cta85
      badge={{ label: "Four steps" }}
      heading="You are one afternoon away from a live clinic"
      description="Every practice went through the same four steps, and none took longer than a fortnight."
      media={
        <Progress16
          title="Your migration"
          steps={["Export", "Map fields", "Review", "Go live"]}
          activeIndex={0}
          caption="Step one is sending us whatever your current system will give up."
        />
      }
      image={{ src: "/backdrops/blue.jpg", alt: "Soft blue gradient backdrop" }}
      notes={[
        {
          title: "You send, we read",
          description: "Any export, any shape. We have not met a format that stopped us yet.",
        },
        {
          title: "One hour together",
          description: "Your lead and our engineer agree what each old field becomes.",
        },
      ]}
      button={{ label: "Start your migration", href: "/migrate" }}
      finePrint="Nothing is charged until your first clinic is taking real bookings."
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Centered eyebrow above the heading, rendered through Badge23
headingstringSection heading, centered and capped at max-w-2xl
descriptionstringCentered supporting paragraph, capped at max-w-xl
mediaReactNodeLive asset on the tile, progress16 in the demo
image{ src: string; alt: string }Backdrop behind the media tile
notesStepNote[][]Hairline notes explaining the steps
button{ label: string; href: string }Single centered action
finePrintstringSmall line directly under the action
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type StepNote = {
  title: string;
  description: 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

cta19

Steps CTA

Three-step process visualization with numbered steps and call-to-action. Perfect for showing how easy it is to get started.

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

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.

PRO

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.

PRO

cta91

Handheld Reminder CTA

A closing call to action that leads with a narrow portrait tile floating a live phone frame, then sets centered copy and two actions beneath it over three hairline promises.