Parallax Panel CTA

A rocky Mediterranean shore with hills across the bay

Whenever you are ready

Thefirstconversationasksnothingofyou.

No forms, no commitment, no need to know what you want yet. Forty minutes to see whether this feels like a place you could talk.

Rated 4.9 by the people who stayed

About this block

Parallax Panel CTAPRO

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.

Cta95: Parallax Panel CTA

A closing invitation inside a deep panel: a photograph drifts behind an ink wash and film grain while the heading settles in word by word above the copy, a pill, a quieter mail link, and a row of stars with a trust line.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Cta95, cta95Demo } from "@/components/beste/block/cta95";

export default function Page() {
  return <Cta95 {...cta95Demo} />;
}

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

tsx
import { Cta95 } from "@/components/beste/block/cta95";

export default function Page() {
  return (
    <Cta95
      eyebrow="Whenever you are ready"
      heading="The first conversation asks nothing of you."
      description="No forms, no commitment, no need to know what you want yet."
      button={{ label: "Book a first conversation", href: "/book" }}
      link={{ label: "Or write to hello@beste.co", href: "mailto:hello@beste.co" }}
      image={{ src: "/photos/valley.jpg", alt: "A wide green valley under soft evening light" }}
      rating={5}
      proof="Rated 4.9 by the people who stayed" 
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
descriptionstringParagraph under the heading
buttonActionButtonPill action, optionally with a Lucide icon
linkSecondaryLinkQuieter underlined link under the pill
image{ src: string; alt: string }Photograph behind the panel
ratingnumberRating out of five, drawn as that many filled stars
proofstringTrust line beside the stars
classNamestringExtra classes for the outer <section>
ts
type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
  icon?: LucideIcon;
};

type SecondaryLink = {
  label: string;
  href: string;
};

Behavior notes

  • rating is rounded and clamped into 0 to 5 before it is drawn, so a value out of range cannot render a hundred stars or a negative count.
  • The stars are drawn only for the filled portion; there is no empty-star track behind them, so a rating of three reads as three marks rather than as three of five.
  • The panel stacks four layers on explicit z-indices inside an isolate context: photograph, a foreground/55 wash, grain, then the copy. The isolation is what keeps those negative z-indices from escaping into the page around it.
  • The photograph drifts -12% to 12% against a 1.25 scale and clears from blur(24px) on decode, with a complete check on mount because a cached image fires its load event before hydration.
  • The section enters on a -15% viewport margin, later than most blocks in the set, so a closing panel this large is properly in view before it begins.
  • The copy waits on 0.3 + heading.split(" ").length * 0.05, matching the word stagger, so the paragraph lands as the last word of the heading does.
  • Everything is optional and each part is separately guarded, so this works as a bare heading and button, or with the whole trust row attached.

More CTA blocks

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

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

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

cta104

Photo Button CTA

A call to action with the text above the picture: a centred serif heading that settles in word by word and an intro, then a wide rounded photograph drifting under a light scrim and film grain with a single large sliding-marker pill at its centre.

PRO

cta101

Soft Panel CTA

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.

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.