Trust Hero with Logos

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

PRO

Hero123: Trust Hero with Logos

Two-column hero (heading, copy and a CTA on the left, a tall portrait photo on the right) followed by an infinite, edge-faded logo marquee that pauses when a visitor hovers it.

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

Base UI flavor

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

This installs the block to components/beste/block/hero123.tsx, the badge7 eyebrow badge and button12 CTA button it renders through, and its dependencies.

Quick start

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

tsx
import { Hero123, hero123Demo } from "@/components/beste/block/hero123";

export default function Page() {
  return <Hero123 {...hero123Demo} />;
}

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

tsx
import { Hero123 } from "@/components/beste/block/hero123";

export default function Page() {
  return (
    <Hero123
      badge={{ label: "Partners in growth" }}
      heading="A studio built around the <strong>work, not the pitch.</strong>"
      description="We embed alongside your team for the long haul, shipping brand and product in tight loops."
      button={{ label: "Partner with us", href: "https://beste.co" }}
      imageSrc="https://images.unsplash.com/photo-1607364611429-93933b339d85?w=1200&auto=format&fit=crop"
      imageAlt="Two designers reviewing layouts at a shared studio desk"
      labels={{ logos: "Embedded with founders since 2014" }}
      logos={[
        { src: "https://oud.pics/sm/l/logoipsum-380.png", alt: "Logoipsum" },
        { src: "https://oud.pics/sm/l/logoipsum-388.png", alt: "Logoipsum" },
        { src: "https://oud.pics/sm/l/logoipsum-395.png", alt: "Logoipsum" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelsHero123Labels{}Small caption shown above the logo marquee
badgeBadgeEyebrow badge above the heading
headingstringHeading; supports inline <strong> for the accent phrase
descriptionstringSupporting copy under the heading
buttonActionButtonSingle CTA rendered through Button12
imageSrcstringTall portrait image beside the text column
imageAltstringAlt text for the image
logosHero123Logo[][]Logo marquee entries
classNamestringExtra classes for the outer <section>
ts
type Hero123Labels = { logos?: string };
type Badge = { label: string };
type ActionButton = { label: string; href: string };
type Hero123Logo = { src: string; alt: string };

Behavior notes

More Hero blocks

View all Hero
PRO

hero138

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.

FREE

hero36

Centered Hero with Logo Cloud

Centered hero with gradient-highlighted heading text and trusted-by logo cloud below CTA buttons. Perfect for B2B SaaS and enterprise products.

PRO

hero59

Enterprise Hero with Trust Badges

Centered hero with security and compliance trust indicators (SOC 2, Uptime, CDN, Encryption) displayed as icon badges. Perfect for enterprise B2B products.

PRO

hero38

Split Hero with Testimonial Card

Two-column hero with prominent testimonial quote card featuring author avatar and company info. Perfect for building trust and social proof.

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

hero111

Hero with Feature List and Image

Two-column hero with heading, description, icon-only feature list, and CTA on one side and a square image on the other. Image position is configurable.