Demo Request Split FormPRO

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.

Cta77: Demo Request Split Form

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.

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

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Monospace eyebrow at the top of the soft panel, rendered via Badge23
headingstringSection heading in the panel
descriptionstringParagraph under the heading
pointsstring[][]Checked promises, separated by hairlines
formDemoFormEvery field, option, and label in the form column
classNamestringExtra classes for the outer <section>
ts
type Field = { label: string; placeholder: string };

type SelectField = { label: string; options: string[] };

type DemoForm = {
  name: Field;
  email: Field;
  size: SelectField;
  submitLabel: string;
  finePrint: string;
};

Behavior notes

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.

More CTA blocks

View all CTA
FREE

cta78

Studio Booking Split CTA

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.

PRO

cta75

Split CTA With Thread

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.

PRO

cta86

Contact And Availability CTA

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.

PRO

cta65

Newsletter CTA

Split card with a subscribe form beside an image.

PRO

cta9

Split Layout Newsletter CTA

Two-column call-to-action with decorative image on one side and feature list with action buttons on the other. Perfect for visually rich conversion sections.

PRO

cta24

Split Text CTA

Asymmetric two-column layout with large heading on the left and description with buttons on the right. Perfect for editorial-style conversion sections.