Trust hero with a heading, description and CTA beside a tall portrait image, over a grayscale logo marquee.
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.
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/hero123?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
labels | Hero123Labels | {} | Small caption shown above the logo marquee |
badge | Badge | – | Eyebrow badge above the heading |
heading | string | – | Heading; supports inline <strong> for the accent phrase |
description | string | – | Supporting copy under the heading |
button | ActionButton | – | Single CTA rendered through Button12 |
imageSrc | string | – | Tall portrait image beside the text column |
imageAlt | string | – | Alt text for the image |
logos | Hero123Logo[] | [] | Logo marquee entries |
className | string | – | Extra classes for the outer <section> |
type Hero123Labels = { logos?: string };
type Badge = { label: string };
type ActionButton = { label: string; href: string };
type Hero123Logo = { src: string; alt: string };logos duplicated once ([...logos, ...logos]) and animated with a scoped styled-jsx @keyframes hero123-marquee rule running translateX(0) to translateX(-50%) over 30 seconds, linear and infinite, which is what makes the loop point invisible.group-hover/hero123) sets animation-play-state: paused on the track, so a visitor can stop the scroll to read a specific logo.bg-gradient-to-r/-l from-background to-transparent overlays so logos fade in and out instead of being clipped abruptly by the container.140x40 box with opacity-50 grayscale, and the portrait image sits in a fixed aspect-[4/5] box; neither the image nor the logos are clickable.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.
hero36
Centered hero with gradient-highlighted heading text and trusted-by logo cloud below CTA buttons. Perfect for B2B SaaS and enterprise products.
hero59
Centered hero with security and compliance trust indicators (SOC 2, Uptime, CDN, Encryption) displayed as icon badges. Perfect for enterprise B2B products.
hero38
Two-column hero with prominent testimonial quote card featuring author avatar and company info. Perfect for building trust and social proof.
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.
hero111
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.