First conversations, this week
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.
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.
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.
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/hero183?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the headline |
heading | string | – | Headline, rendered as the page h1 through Text1 |
description | string | – | Paragraph under the headline |
facts | string[] | [] | Short reassurances under the paragraph |
form | Hero183Form | – | Every string in the panel; the whole panel is skipped when unset |
className | string | – | Extra classes for the outer <section> |
type Hero183Form = {
title: string;
name: string;
email: string;
phone: string;
button: string;
note: string;
};useId, so a page carrying this hero and another form keeps every Label pointing at its own input.bg-background because they sit on a bg-muted panel; without it the shadcn default would render a muted field on a muted surface.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.0.5s delay rather than field by field, so it arrives as a card rather than as a form assembling itself.trigger="mount", and the copy and facts are offset from 0.4 + heading.split(" ").length * 0.07.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.
hero194
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.
hero184
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.
hero176
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.
hero185
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.
hero180
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.
hero179
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.