A closing call to action that pairs a soft panel of promises, separated by hairlines, with an inline demo request form carrying name, work email, and team size fields plus fine print under the submit action.
Closing call to action split in two: a soft panel carrying the promise and what the call will actually cover, separated by hairlines, beside an inline demo request form with name, work email, and team size fields under a full-width submit and its fine print.
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/cta77?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/cta77?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/cta77.tsx, the select shadcn/ui primitive it is built on, and the badge23 and button21 components it uses for the eyebrow and the submit action.
The installed file exports cta77Demo alongside the block: the exact props behind the preview above. Spread it to get a working CTA in one line.
import { Cta77, cta77Demo } from "@/components/beste/block/cta77";
export default function Page() {
return <Cta77 {...cta77Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Cta77 } from "@/components/beste/block/cta77";
export default function Page() {
return (
<Cta77
badge={{ label: "Book a demo" }}
heading="See it running on your own Tuesday"
description="Thirty minutes, a working workspace, and straight answers."
points={[
"A live workspace, never a slide deck",
"Straight answers on pricing and migration",
]}
form={{
name: { label: "Your name", placeholder: "Elena Rourke" },
email: { label: "Work email", placeholder: "you@practice.com" },
size: {
label: "Team size",
options: ["3 to 10 seats", "11 to 25 seats", "More than 25 seats"],
},
submitLabel: "Request a demo",
finePrint: "We reply within one working day.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Monospace eyebrow at the top of the soft panel, rendered via Badge23 |
heading | string | – | Section heading in the panel |
description | string | – | Paragraph under the heading |
points | string[] | [] | Checked promises, separated by hairlines |
form | DemoForm | – | Every field, option, and label in the form column |
className | string | – | Extra classes for the outer <section> |
type Field = { label: string; placeholder: string };
type SelectField = { label: string; options: string[] };
type DemoForm = {
name: Field;
email: Field;
size: SelectField;
submitLabel: string;
finePrint: string;
};<form> element and no submit handler: the text fields are uncontrolled markup and the submit is a plain Button21, so posting the lead is the integrator's to wire.Select, and its defaultValue is the first entry of options, so the control opens on a real choice rather than an empty trigger.useId and every label is bound through htmlFor, which keeps two instances of the block on one page from colliding.lg. Below that the panel stacks above the form in source order.Wiring the form up
This block ships the form markup only; state, validation, and submit are yours to add. Our guide wires field markup like this to React Hook Form, TanStack Form, and Formisch on one field system.
cta78
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.
cta75
A split call to action pairing an eyebrow, light heading, paragraph, and two accent buttons with an image tile that floats a live team message thread.
cta86
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.