Editorial Trust Hero

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.

PRO

Hero138: Editorial Trust Hero

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.

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.

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

Base UI flavor

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

Quick start

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.

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

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

Props

PropTypeDefaultDescription
badgeBadgeEyebrow badge above the heading
headingstringGiant display heading
descriptionstringSupporting paragraph below the heading
backgroundImageHeroImageStatic full-bleed background photo
buttonsActionButton[][]CTAs rendered below the description
itemsAvatar[][]Overlapping avatar row rendered with the trust line
labels{ trust?: string }Trust line copy shown next to the avatar row
classNamestringExtra classes for the outer <section>
ts
type Badge = { label: string };
type HeroImage = { src: string; alt: string };
type ActionButton = { label: string; href: string };
type Avatar = { src: string; alt: string };

Behavior notes

More Hero blocks

View all Hero
PRO

hero123

Trust Hero with Logos

Trust hero with a heading, description and CTA beside a tall portrait image, over a grayscale logo marquee.

PRO

hero120

Editorial Image Hero

Centered editorial hero with eyebrow, large heading, description, dual dark and outline CTAs, and a wide 16:9 image with a mono caption below.

PRO

hero145

Editorial Product Hero

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.

PRO

hero117

Giant Wordmark Hero

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.

PRO

hero135

Editorial Split Masthead

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.

PRO

hero118

Split Hero With Floating Review

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.