Two-pane masthead hero: a solid dark editorial panel with eyebrow, value-prop heading, supporting copy, a CTA and an availability note on one side, and a full-bleed image on the other.
Two-pane masthead hero: a solid dark editorial panel carrying an eyebrow badge, a value-prop heading, supporting copy, a CTA and an availability note on one side, and a full-bleed photo on the other. The panes swap stacking order between mobile and desktop.
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/hero135?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero135?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero135.tsx, the badge7 eyebrow and button12 CTA button it renders through, and its dependencies.
The installed file exports hero135Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero135, hero135Demo } from "@/components/beste/block/hero135";
export default function Page() {
return <Hero135 {...hero135Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { Hero135 } from "@/components/beste/block/hero135";
export default function Page() {
return (
<Hero135
badge={{ label: "Brand & product studio" }}
heading="The work that makes you look inevitable."
description="We partner with a handful of founders each year to shape the brand and product that hold together."
button={{ label: "See if we're a fit", href: "/contact" }}
labels={{ note: "Now booking: two studio seats open this quarter." }}
image={{
src: "https://images.unsplash.com/photo-1527498913931-c302284a62af?w=1200&h=1400&fit=crop",
alt: "Studio team working at a long shared table",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Eyebrow badge above the heading in the editorial panel |
heading | string | – | Value-prop heading |
description | string | – | Supporting paragraph below the heading |
button | ActionButton | – | CTA in the editorial panel; also gates whether labels.note renders |
labels | Hero135Labels | {} | Copy overrides for secondary text |
image | HeroImage | – | Full-bleed photo pane |
className | string | – | Extra classes for the outer <section> |
type Badge = { label: string };
type ActionButton = { label: string; href: string };
type Hero135Labels = { note?: string };
type HeroImage = { src: string; alt: string };order-2 (below the image) on mobile and lg:order-1 (left, first) on large screens, while the image pane is order-1 on mobile and lg:order-2 on large screens.bg-foreground fill, not a photo or gradient, giving the text side guaranteed contrast independent of the image pane's content.labels.note is nested inside the button conditional in the markup, so the availability note only renders when a button is also supplied, even if labels.note itself is set.min-h-[320px] floor on mobile so the photo keeps a usable height before the lg:grid-cols-2 layout takes over and the grid row height governs it instead.hero143
A light editorial hero with an oversized display heading on the left, an offset supporting paragraph and accent button on the right, and a full-bleed image band below.
hero112
Two-column studio hero with a two-tone headline, dual CTAs, tall image and a client wordmark strip.
hero120
Centered editorial hero with eyebrow, large heading, description, dual dark and outline CTAs, and a wide 16:9 image with a mono caption below.
hero121
Split hero with a big headline and CTA on the left, a divided vertical stat rail on the right, and a full-width wide image strip below.
hero138
Static full-bleed editorial hero with an eyebrow badge, a giant display heading, a supporting paragraph, dual seal CTAs, and an overlapping avatar trust row.