An edge-to-edge photographic band whose image drifts under a dark scrim, drifting soft light and film grain, with a centred serif heading that settles in word by word, an intro and two sliding-marker pills.
A full-bleed closing band: a photograph drifting under an ink wash and film grain, with a centred heading that settles in word by word, a paragraph and a pair of pills over the top.
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.
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
npx shadcn add "https://ui.beste.co/r/cta97?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/cta97?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/cta97.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports cta97Demo alongside the block: the exact props behind the preview above. Spread it to get a working closing band in one line.
import { Cta97, cta97Demo } from "@/components/beste/block/cta97";
export default function Page() {
return <Cta97 {...cta97Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Cta97 } from "@/components/beste/block/cta97";
export default function Page() {
return (
<Cta97
eyebrow="When you are ready, not before"
heading="Come as you are. Leave a little lighter."
description="There is no right moment to begin and no wrong reason to reach out."
buttons={[
{ label: "Reach out", href: "/contact", tone: "light" },
{ label: "Read the questions", href: "/faq", tone: "outline" },
]}
image={{ src: "/photos/hills.jpg", alt: "Soft fog rolling over layered green hills" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
description | string | – | Paragraph under the heading |
buttons | ActionButton[] | [] | Pill actions; each defaults to the light tone on this dark band |
image | { src: string; alt: string } | – | Full-bleed background photograph |
className | string | – | Extra classes for the outer <section> |
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};light tone rather than primary, which is the right default here: the band is dark, so an unspecified button should come out pale instead of taking the brand colour.-16% to 16% against a 1.35 scale. A band with no rounded frame and no fixed aspect ratio can afford the travel, and the extra scale is what keeps the edges covered at both ends.useId, so two grain surfaces on one page cannot collide on a global SVG id and end up sharing one filter.isolate context, so the photograph, the foreground/55 wash and the grain stack correctly without any of them escaping behind the section around them.text-background at its root, so everything inside inherits the pale colour and only the deliberately dimmer lines need an opacity of their own.-15% viewport margin, later than the standard block in the set, so a band this tall is properly on screen before it starts.image the band is a plain ink surface with the wash and grain still over it.cta103
A dark ink band with film grain and no photograph: an eyebrow and a wide serif heading that settles in word by word on the left, an intro, a light sliding-marker pill and an underlined text link on the right.
cta84
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.
cta95
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.