Call Request Hero

First conversations, this week

Leaveyourname.Wecallyou,nottheotherwayround.

Twenty minutes on the phone to hear what brings you here and say honestly whether this is the right room. No forms after this one.

  • Free, always
  • Reply within one working day
  • Nothing is booked until we have spoken

Request a call

We never share your details, and we never call twice if you do not pick up.

About this block

Call Request HeroPRO

A lead hero: eyebrow, a serif headline that settles in word by word, an intro and dotted facts on the left, and a soft muted request form on the right with name, email and phone fields, a full-width sliding-marker pill and a privacy note.

Hero183: Call Request Hero

A call-request hero: headline, intro and three short facts on one side, and on the other a soft panel holding name, email and phone fields under a full-width pill.

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

Base UI flavor

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

This installs the block to components/beste/block/hero183.tsx, the shadcn input and label primitives the form is built on, and the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

The installed file exports hero183Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.

tsx
import { Hero183, hero183Demo } from "@/components/beste/block/hero183";

export default function Page() {
  return <Hero183 {...hero183Demo} />;
}

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

tsx
import { Hero183 } from "@/components/beste/block/hero183";

export default function Page() {
  return (
    <Hero183
      eyebrow="First conversations, this week"
      heading="Leave your name. We call you, not the other way round."
      description="Twenty minutes on the phone to hear what brings you here."
      facts={["Free, always", "Reply within one working day", "Nothing is booked until we have spoken"]}
      form={{
        title: "Request a call",
        name: "Your name",
        email: "Email",
        phone: "Phone, if you would rather we call",
        button: "Request the call",
        note: "We never share your details.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the headline
headingstringHeadline, rendered as the page h1 through Text1
descriptionstringParagraph under the headline
factsstring[][]Short reassurances under the paragraph
formHero183FormEvery string in the panel; the whole panel is skipped when unset
classNamestringExtra classes for the outer <section>
ts
type Hero183Form = {
  title: string;
  name: string;
  email: string;
  phone: string;
  button: string;
  note: string;
};

Behavior notes

  • Field ids come from useId, so a page carrying this hero and another form keeps every Label pointing at its own input.
  • The inputs are given an explicit bg-background because they sit on a bg-muted panel; without it the shadcn default would render a muted field on a muted surface.
  • The phone field is typed tel and its label says it is optional in words rather than with an asterisk, which suits a form whose whole promise is that it asks for very little.
  • The panel animates in as one block on a 0.5s delay rather than field by field, so it arrives as a card rather than as a form assembling itself.
  • The headline runs with trigger="mount", and the copy and facts are offset from 0.4 + heading.split(" ").length * 0.07.
  • The two columns are vertically centred, so a short fact list stays level with the panel instead of riding at its top.
  • The form only calls preventDefault() on submit; nothing is collected or sent until you wire it up.

Wiring the form up

This block ships the form markup only; state, validation, and submit are yours to add. Our guide wires the shadcn Field primitives to React Hook Form, TanStack Form, and Formisch on one field system.

More Hero blocks

View all Hero
PRO

hero194

Turning Request Hero

A centred install hero whose serif headline ends in a word that keeps changing (a pricing page, a hero, a footer), so the promise reads as a list of things the agent can be asked for. Below it an ink command pill that copies the install command on click sits beside a sliding-marker outline pill, then a quiet note.

PRO

hero184

Figures Hero

A text hero with an eyebrow and a serif headline that settles in word by word on the left, the intro and two sliding-marker pills on the right, and a ruled row of three serif figures that count up beneath, with no image.

PRO

hero176

Unveiling Hero

A centred hero: eyebrow, a serif headline settling in word by word, intro and two sliding-marker pills, then a wide photograph that unveils itself from a smaller inset frame and keeps drifting as the page scrolls, closed by a row of dotted facts.

PRO

hero185

Logos Hero

A centred hero with an eyebrow, a serif headline that settles in word by word, an intro and a sliding-marker pill, closed by a ruled row where greyscale partner logos drift right to left behind soft edge fades, next to a small-caps label.

PRO

hero180

Centred Serif Hero

The plainest hero in the language: a centred eyebrow, a serif headline that settles in word by word, an intro, two sliding-marker pills and an avatar trust line, with no image at all.

PRO

hero179

Turning Word Hero

A hero whose serif headline always breaks over two lines, the second one a word that takes turns, each blurring in as the last blurs out over a line kept at a fixed height, beside an intro and a sliding-marker pill, above three photographs that drift at their own pace as the page scrolls, the middle one set a step lower.