Fullscreen Hero with Logo Cloud

Cinematic fullscreen hero with inset background video and trusted-by logo strip

PRO

Hero86: Fullscreen Hero with Logo Cloud

Fullscreen, centered hero over an inset background image or video, with a bordered "trusted by" panel of partner and customer logos anchored to the bottom of the viewport.

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

Base UI flavor

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

This installs the block to components/beste/block/hero86.tsx along with the badge and button shadcn/ui primitives it depends on.

Quick start

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

tsx
import { Hero86, hero86Demo } from "@/components/beste/block/hero86";

export default function Page() {
  return <Hero86 {...hero86Demo} />;
}

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

tsx
import { Hero86 } from "@/components/beste/block/hero86";

export default function Page() {
  return (
    <Hero86
      badge={{ label: "Enterprise Ready", variant: "secondary" }}
      heading="Infrastructure that scales with your ambition"
      description="Deploy globally, scale instantly, and monitor everything."
      buttons={[
        { label: "Start Deploying", href: "/signup" },
        { label: "Talk to Sales", href: "/contact", variant: "outline" },
      ]}
      backgroundMedia={{ type: "image", src: "https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?w=1600&h=900&fit=crop" }}
      logosHeading="Trusted by industry leaders"
      logos={[
        { name: "Vercel", src: "https://upload.wikimedia.org/wikipedia/commons/5/5e/Vercel_logo_black.svg", alt: "Vercel" },
        { name: "GitHub", src: "https://upload.wikimedia.org/wikipedia/commons/9/91/Octicons-mark-github.svg", alt: "GitHub" },
      ]}
      invertColor
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Small label above the heading
headingstringMain headline
descriptionstringSupporting paragraph under the heading
buttons{ label: string; href: string; variant?: "default" | "outline" }[][]CTA buttons centered below the description
backgroundMedia{ type: "image" | "video"; src: string; alt?: string }Full-viewport inset image or video behind the content
logosLogoItem[][]Logo marks shown in the bottom "trusted by" panel
logosHeadingstringCaption above the logo row (for example "Trusted by industry leaders")
invertColorbooleantrueSwitches text, overlay, and logo filter treatment between dark-background and light-background styling
classNamestringExtra classes for the outer <section>
ts
type LogoItem = {
  name: string;
  src: string;
  alt: string;
};

Behavior notes

More Hero blocks

View all Hero
PRO

hero85

Fullscreen Hero with Floating Testimonials

Cinematic fullscreen hero with inset background video and floating glassmorphism testimonial cards

PRO

hero100

Fullscreen Hero with Browser Mockup

Fullscreen hero with centered content and browser window frame mockup over inset background video

PRO

hero81

Fullscreen Hero with Quick-Access Cards

Cinematic fullscreen hero with inset background media and glassmorphism quick-access cards

PRO

hero99

Fullscreen Hero with Marquee Ticker

Cinematic fullscreen hero with scrolling marquee keyword band over inset background video

PRO

hero95

Fullscreen Hero with Bento Grid

Fullscreen hero with centered heading and 4-column bento feature grid over inset background video

PRO

hero82

Left-Aligned Hero with Gradient Overlay

Left-aligned fullscreen hero with inset background media and directional gradient overlay