Fullscreen Hero with Browser Mockup

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

PRO

Hero100: Fullscreen Hero with Browser Mockup

Hero with a full-bleed background video behind centered heading copy, and a browser-window mockup (traffic-light chrome, fake URL bar) pulled up with a large negative top margin so its top half overlaps the video zone and its bottom half rests on the plain background below.

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

Base UI flavor

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

This installs the block to components/beste/block/hero100.tsx and its dependencies: the badge and button shadcn/ui primitives.

Quick start

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

tsx
import { Hero100, hero100Demo } from "@/components/beste/block/hero100";

export default function Page() {
  return <Hero100 {...hero100Demo} />;
}

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

tsx
import { Hero100 } from "@/components/beste/block/hero100";

export default function Page() {
  return (
    <Hero100
      badge={{ label: "Preview", variant: "secondary" }}
      heading="See it in action before you commit"
      description="A live preview of your entire workflow, running right in your browser."
      buttons={[
        { label: "Try It Now", href: "/signup", variant: "default" },
        { label: "View Docs", href: "/docs", variant: "outline" },
      ]}
      backgroundMedia={{ type: "video", src: "/videos/hero.mp4" }}
      windowMedia={{ src: "/images/app-preview.png", alt: "App preview" }}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgePill shown above the heading
headingstringMain headline
descriptionstringSupporting copy under the heading
buttonsButtonItem[][]CTA buttons under the description
backgroundMediaBackgroundMediaVideo or image behind the heading/text zone
windowMediaBackgroundMediaContent shown inside the browser-window mockup
invertColorbooleantrueLight-on-dark treatment (white text, black overlay) vs. dark-on-light
classNamestringExtra classes for the outer <section>
ts
type Badge = { label: string; variant?: "default" | "secondary" | "outline" };
type ButtonItem = { label: string; href: string; variant?: "default" | "outline" };
type BackgroundMedia = { type: "image" | "video"; src: string; alt?: string };

Behavior notes

More Hero blocks

View all Hero
PRO

hero86

Fullscreen Hero with Logo Cloud

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

PRO

hero80

Cinematic Hero with Overlapping Media

Centered hero with inset background media and overlapping product image

PRO

hero82

Left-Aligned Hero with Gradient Overlay

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

PRO

hero85

Fullscreen Hero with Floating Testimonials

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

PRO

hero95

Fullscreen Hero with Bento Grid

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

PRO

hero81

Fullscreen Hero with Quick-Access Cards

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