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.
Static full-bleed editorial hero over a photo background: an eyebrow badge, a giant display heading, a supporting paragraph, up to two CTA buttons with different tones, and an overlapping avatar row paired with a trust line beneath them.
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/hero138?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero138?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero138.tsx, the badge7 eyebrow and button12 CTA buttons it renders through, and its dependencies.
The installed file exports hero138Demo alongside the block: the exact props behind the preview above. Spread it to get a working hero in one line.
import { Hero138, hero138Demo } from "@/components/beste/block/hero138";
export default function Page() {
return <Hero138 {...hero138Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { Hero138 } from "@/components/beste/block/hero138";
export default function Page() {
return (
<Hero138
badge={{ label: "Studio Auralis" }}
heading="Quiet work, loud results."
description="We build calm, considered brand systems for teams who would rather be remembered than be everywhere."
backgroundImage={{
src: "https://images.unsplash.com/photo-1486718448742-163732cd1544?w=1920&h=1200&fit=crop",
alt: "Concrete spiral staircase shot from below",
}}
buttons={[
{ label: "Start a project", href: "/contact" },
{ label: "View the studio", href: "/studio" },
]}
items={[
{
src: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=120&h=120&fit=crop",
alt: "Portrait of a studio founder",
},
{
src: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=120&h=120&fit=crop",
alt: "Portrait of a brand lead",
},
]}
labels={{ trust: "Trusted by teams across four continents." }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Eyebrow badge above the heading |
heading | string | – | Giant display heading |
description | string | – | Supporting paragraph below the heading |
backgroundImage | HeroImage | – | Static full-bleed background photo |
buttons | ActionButton[] | [] | CTAs rendered below the description |
items | Avatar[] | [] | Overlapping avatar row rendered with the trust line |
labels | { trust?: string } | – | Trust line copy shown next to the avatar row |
className | string | – | Extra classes for the outer <section> |
type Badge = { label: string };
type HeroImage = { src: string; alt: string };
type ActionButton = { label: string; href: string };
type Avatar = { src: string; alt: string };useState or useEffect, no rotation, and no crossfade, unlike most of the other heroes in this set; the background is a single fixed image with a legibility gradient overlay.buttons gets tone="dark" on Button12 and every subsequent entry gets tone="outline".-space-x-3 with a border-2 border-background ring on each) and only appears, together with the trust line, when items has entries or labels.trust is set.hero123
Trust hero with a heading, description and CTA beside a tall portrait image, over a grayscale logo marquee.
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.
hero145
An editorial hero with an eyebrow and an oversized full-width light heading, then a lower row pairing a paragraph and two accent buttons with an image tile that floats a live app window frame.
hero117
Editorial studio hero with a vertical parenthetical side label, monospace corner links, an oversized centered wordmark with tagline, and a full-bleed strip of rounded portrait tiles below.
hero135
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.
hero118
Two-column hero: parenthetical eyebrow, oversized heading, supporting copy, a dark CTA and an avatar trust row on the left; a tall image on the right with a floating star-rated testimonial card overlapping its corner.