One more thing
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.
A closing band on the ink surface under film grain: a wide heading that settles in word by word on one side, and a short paragraph, a pale pill and a quieter underlined link aligned to its baseline on the other.
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/cta103?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/cta103?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/cta103.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports cta103Demo alongside the block: the exact props behind the preview above. Spread it to get a working closing band in one line.
import { Cta103, cta103Demo } from "@/components/beste/block/cta103";
export default function Page() {
return <Cta103 {...cta103Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Cta103 } from "@/components/beste/block/cta103";
export default function Page() {
return (
<Cta103
eyebrow="One more thing"
heading="If you have read this far, you are already halfway in the door."
description="The rest is a phone call. Twenty minutes, free, no decisions required."
button={{ label: "Make the call", href: "/call", tone: "light" }}
link={{ label: "Or read the questions first", href: "/faq" }}
/>
);
}| 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 in the right column |
button | ActionButton | – | Pill action, defaulting to the light tone for this dark band |
link | { label: string; href: string } | – | Quieter underlined link under the pill |
className | string | – | Extra classes for the outer <section> |
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};useId, so two grain surfaces on one page cannot collide on a global SVG id.button falls back to the light tone rather than primary, which is the correct default on a dark band: an unspecified button comes out pale instead of taking the brand colour.md:items-end, so the paragraph and its actions sit on the same baseline as the foot of the heading rather than beside its first line.0.3 + heading.split(" ").length * 0.05, matching the word stagger, so it arrives as the heading finishes however long that heading runs.text-background at its root, so everything inside inherits the pale colour and only the deliberately dimmer lines carry an opacity of their own.decoration-background/30 rule that goes solid on hover, which is quieter than a colour change and keeps the two actions clearly ranked.cta97
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.
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.
cta104
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.
cta72
A monochrome newsletter CTA band pairing an oversized statement with an inline email-capture form and a reassurance note.