Soft Panel CTA

Ready when you are

Theroomishere.Thehourisyours.

Book a first conversation, or write to us if that feels easier. Either way, a practitioner replies personally within a working day.

About this block

Soft Panel CTAPRO

The simplest call to action in the language: one soft muted panel with a centred eyebrow, a serif heading that settles in word by word, an intro and two sliding-marker pills.

Cta101: Soft Panel CTA

The plainest closing panel in the set: a soft rounded surface, a centred heading that settles in word by word, a short paragraph and a pair of pills, with no photograph and nothing to load.

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

Base UI flavor

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

This installs the block to components/beste/block/cta101.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

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

tsx
import { Cta101, cta101Demo } from "@/components/beste/block/cta101";

export default function Page() {
  return <Cta101 {...cta101Demo} />;
}

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

tsx
import { Cta101 } from "@/components/beste/block/cta101";

export default function Page() {
  return (
    <Cta101
      eyebrow="Ready when you are"
      heading="The room is here. The hour is yours."
      description="Book a first conversation, or write to us if that feels easier."
      buttons={[
        { label: "Book a conversation", href: "/book", tone: "dark" },
        { label: "Write to us", href: "mailto:hello@beste.co", tone: "outline" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
descriptionstringParagraph under the heading
buttonsActionButton[][]Pill actions, wrapped and centred
classNamestringExtra classes for the outer <section>
ts
type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • Nothing here loads: no photograph, no grain filter, no scroll listener. It is the block to reach for when a page already carries several image-heavy sections and the closing panel should cost nothing.
  • The panel itself animates in as one piece while the lines inside it are staggered separately, so the surface arrives first and the copy resolves on it rather than everything appearing at once.
  • The heading takes an explicit delay={0.3} so it starts after the eyebrow instead of alongside it, and the paragraph then waits on 0.3 + heading.split(" ").length * 0.05 to land as the last word does.
  • Buttons wrap and centre, so two actions stack cleanly on a phone rather than shrinking side by side.
  • Each button carries its own tone, so a solid primary and an outline alternative can sit together without either being styled from outside.
  • The heading is capped at max-w-3xl inside a centred column, so a long sentence breaks into balanced lines instead of running the full width of the panel.

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

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

cta105

One Line CTA

The most compact call to action in the language: a single serif line that settles in word by word with an underlined text link beneath it, and a sliding-marker pill at the other end, all between two hairline rules.

PRO

cta15

Minimal CTA

Ultra-minimal call-to-action with a single bold heading and action button. Perfect for clean, distraction-free conversion sections.

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

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.