Handheld Reminder CTA

Soft blue gradient backdrop
09:41

Appointment

Confirmed

Wednesday, 14 May · 09:00

WithDr Amelia Frost
RoomClinic 2, ground floor
BringReferral letter
For the member

Send them something they can actually use

Every appointment leaves as a link that opens on any phone, with the room, the clinician, and what to bring already on it.

Nothing to install

It is a link. It opens in whatever browser is already on the phone.

Rescheduling in two taps

Members move themselves into a real opening instead of leaving a voicemail.

Readable at arm's length

Large type, one action, and no login for the person you are trying to help.

About this block

Handheld Reminder CTAPRO

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.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/cta91.tsx, the browser35 phone-frame piece it floats on the tile (installed to components/beste/piece/browser35.tsx), and the badge23 and button21 components it uses for the eyebrow and the actions.

Quick start

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

tsx
import { Browser35 } from "@/components/beste/piece/browser35";
import { Cta91, cta91Demo } from "@/components/beste/block/cta91";

export default function Page() {
  return <Cta91 {...cta91Demo} />;
}

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

tsx
import { Browser35 } from "@/components/beste/piece/browser35";
import { Cta91 } from "@/components/beste/block/cta91";

export default function Page() {
  return (
    <Cta91
      badge={{ label: "For the member" }}
      heading="Send them something they can actually use"
      description="Every appointment leaves as a link that opens on any phone."
      media={
        <Browser35
          time="09:41"
          title="Appointment"
          status="Confirmed"
          headline="Wednesday, 14 May · 09:00"
          rows={[
            { label: "With", value: "Dr Amelia Frost" },
            { label: "Room", value: "Clinic 2, ground floor" },
          ]}
        />
      }
      image={{ src: "/backdrops/blue.jpg", alt: "Soft blue gradient backdrop" }}
      buttons={[
        { label: "See a live reminder", href: "/reminder" },
        { label: "Book a demo", href: "/demo", tone: "outline" },
      ]}
      promises={[
        {
          title: "Nothing to install",
          description: "It is a link. It opens in whatever browser is already on the phone.",
        },
        {
          title: "Rescheduling in two taps",
          description: "Members move themselves into a real opening.",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Centered eyebrow, below the tile rather than above it
headingstringSection heading, centered and capped at max-w-2xl
descriptionstringCentered supporting paragraph, capped at max-w-xl
mediaReactNodeLive asset on the portrait tile, browser35 in the demo
image{ src: string; alt: string }Backdrop behind the media tile
buttonsActionLink[][]Centered actions in source order
promisesPromiseItem[][]Hairline promises under the actions
classNamestringExtra classes for the outer section
ts
type ButtonTone = "primary" | "neutral" | "outline";

type ActionLink = {
  label: string;
  href: string;
  tone?: ButtonTone;
};

type PromiseItem = {
  title: string;
  description: string;
};

Behavior notes

  • The tile leads the block, above the eyebrow. That reversal is the point: the artefact is shown before it is described, which is why media is the first child of the container.
  • The tile is a portrait crop, h-96 inside max-w-xs, so it reads as a handset rather than as a wide media band. It is centered with mx-auto rather than gridded.
  • The tile height is fixed at every breakpoint, so the phone frame keeps its proportions on mobile instead of stretching to the container width.
  • The promise columns each carry their own border-t, so the rules are per column and stop at the gaps.
  • The promises grid is md:grid-cols-3, which is the count the layout is tuned for. A fourth wraps onto a second row.
  • Button tones fall back positionally: tone is honored when set, otherwise the first button renders primary and every later one renders outline.
  • PromiseItem is named rather than being called Promise, since that would shadow the global Promise type inside the installed file.

More CTA blocks

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

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

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.

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

cta76

Plan-Led Centered CTA

A centered call to action led by a floating plan price card on an image tile, followed by an eyebrow, a large light heading, a paragraph, two accent buttons, and a reassurance note.

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.