Stacked Hero with Media Top

Vertical split hero with video/image on top and content section below

PRO

Hero90: Stacked Hero with Media Top

Fullscreen hero stacked vertically rather than split side by side: a video or image fills the top half of the viewport with a gradient fade into the bottom half, which holds a centered heading, description, and buttons on a solid background. There is no horizontal split at any breakpoint, only a top-to-bottom layout.

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

Base UI flavor

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

This installs the block to components/beste/block/hero90.tsx and the shadcn/ui Button primitive it depends on.

Quick start

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

tsx
import { Hero90, hero90Demo } from "@/components/beste/block/hero90";

export default function Page() {
  return <Hero90 {...hero90Demo} />;
}

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

tsx
import { ArrowRight } from "lucide-react";
import { Hero90 } from "@/components/beste/block/hero90";

export default function Page() {
  return (
    <Hero90
      heading="A new way to build for the modern web"
      description="Visual development meets production-grade code."
      buttons={[
        { label: "Join the Waitlist", href: "/signup", variant: "default", icon: ArrowRight },
        { label: "Learn More", href: "/about", variant: "outline" },
      ]}
      backgroundMedia={{ type: "image", src: "/hero/skyline.jpg", alt: "City skyline" }}
      invertColor
    />
  );
}

Props

PropTypeDefaultDescription
headingstringMain headline
descriptionstringSupporting paragraph under the heading
buttonsButton[][]CTA buttons, rendered in order
backgroundMediaBackgroundMediaMedia filling the top half
invertColorbooleantrueSwitches the media's gradient overlay from dark to background-tinted
classNamestringExtra classes for the outer <section>
ts
type Button = { label: string; href: string; variant?: "default" | "outline"; icon?: LucideIcon };
type BackgroundMedia = { type: "image" | "video"; src: string; alt?: string };

Behavior notes

More Hero blocks

View all Hero
PRO

hero97

Bottom-Aligned Hero with Stack Cards

Fullscreen bottom-aligned hero with vertical stack cards and inset background video with gradient overlay

PRO

hero84

Split Hero with Edge-to-Edge Media

50/50 split hero with content left and edge-to-edge video/image right with checklist items

PRO

hero92

Split Hero with Bento Feature Grid

50/50 split hero with content left and bento feature grid overlay on video right

PRO

hero102

Split Hero with Timeline Steps

50/50 split hero with content left and vertical numbered timeline overlay on video right

PRO

hero35

Split Hero with Video Player

Two-column hero with playable video (or image), play button overlay, and key stats row. Perfect for product demos and feature announcements.

PRO

hero80

Cinematic Hero with Overlapping Media

Centered hero with inset background media and overlapping product image