Contact And Availability CTAPRO

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.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/cta86.tsx, the card31 person piece it floats in the dark column (installed to components/beste/piece/card31.tsx), and the badge23 and button21 components it uses for the eyebrow and the action.

Quick start

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

tsx
import { Cta86, cta86Demo } from "@/components/beste/block/cta86";

export default function Page() {
  return <Cta86 {...cta86Demo} />;
}

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

tsx
import { Card31 } from "@/components/beste/piece/card31";
import { Cta86 } from "@/components/beste/block/cta86";

export default function Page() {
  return (
    <Cta86
      badge={{ label: "Talk to a person" }}
      heading="Pick a morning and we will bring the workspace to you"
      description="Half an hour, your own data if you want it, and an engineer rather than a salesperson."
      contacts={[
        { label: "Email", value: "hello@example.com" },
        { label: "Phone", value: "+44 20 7946 0812" },
        { label: "Response", value: "Within one working day" },
      ]}
      mediaTitle="Who you will actually meet"
      media={
        <Card31
          avatar={{ src: "/people/priya.jpg", alt: "Portrait of Priya Nandan" }}
          name="Priya Nandan"
          role="Migration engineer"
          status="Free from 09:30 today"
          availability="free"
          rows={[
            { label: "Call length", value: "30 minutes" },
            { label: "Based in", value: "Bristol, UK" },
          ]}
        />
      }
      button={{ label: "Book a slot", href: "/demo" }}
      finePrint="Prefer email? Write to us and we will reply with three times that suit you."
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow at the top of the light column
headingstringSection heading in the light column
descriptionstringSupporting paragraph, capped at max-w-md
contactsContactRow[][]Label and value pairs in the contact table
mediaTitlestringSmall label above the asset in the dark column
mediaReactNodeLive asset in the dark column, card31 in the demo
button{ label: string; href: string }Action at the foot of the dark column
finePrintstringSmall line under the action
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type ContactRow = {
  label: string;
  value: string;
};

Behavior notes

More CTA blocks

View all CTA
FREE

cta78

Studio Booking Split CTA

Closing call to action splitting a tall photo against an oversized heading, a short pitch, a pill CTA beside a plain email link, and a ruled two-column row stating reply time and next availability.

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.

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

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

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.