Fullscreen Hero with Bento Grid

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

PRO

Hero95: Fullscreen Hero with Bento Grid

Fullscreen, centered hero (not a left/right split) with an inset, rounded video or image panel framed by page padding rather than filling edge to edge. Badge, heading, description, and buttons sit centered above a 4-column bento grid of feature cards that spans the full width beneath them.

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

Base UI flavor

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

This installs the block to components/beste/block/hero95.tsx and the shadcn/ui primitives it depends on: Badge and Button.

Quick start

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

tsx
import { Hero95, hero95Demo } from "@/components/beste/block/hero95";

export default function Page() {
  return <Hero95 {...hero95Demo} />;
}

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

tsx
import { Globe, Lock, Rocket } from "lucide-react";
import { Hero95 } from "@/components/beste/block/hero95";

export default function Page() {
  return (
    <Hero95
      badge={{ label: "Why Us", variant: "secondary" }}
      heading="Everything you need, nothing you don't"
      buttons={[{ label: "Get Started", href: "/signup", variant: "default" }]}
      backgroundMedia={{ type: "image", src: "/hero/grid.jpg", alt: "Abstract grid" }}
      bentoCards={[
        { icon: Rocket, title: "Instant Deploy", description: "Push to Git, live in seconds.", span: 2 },
        { icon: Globe, title: "Edge Network", description: "Served from 40+ locations." },
        { icon: Lock, title: "Secure by Default", description: "SSL, DDoS protection, SOC 2." },
      ]}
      invertColor
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeSmall pill above the heading
headingstringMain headline
descriptionstringSupporting paragraph under the heading
buttonsButton[][]CTA buttons, rendered in order
backgroundMediaBackgroundMediaMedia in the inset frame behind the content
bentoCardsBentoCard[][]Feature cards in the grid below the buttons
invertColorbooleantrueSwitches the media overlay and heading/description colors between dark and background-tinted
classNamestringExtra classes for the outer <section>
ts
type Badge = { label: string; variant?: "default" | "secondary" | "outline" };
type Button = { label: string; href: string; variant?: "default" | "outline" };
type BackgroundMedia = { type: "image" | "video"; src: string; alt?: string };
type BentoCard = { icon: LucideIcon; title: string; description: string; span?: 1 | 2 };

Behavior notes

More Hero blocks

View all Hero
PRO

hero92

Split Hero with Bento Feature Grid

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

PRO

hero100

Fullscreen Hero with Browser Mockup

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

PRO

hero86

Fullscreen Hero with Logo Cloud

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

PRO

hero85

Fullscreen Hero with Floating Testimonials

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

PRO

hero97

Bottom-Aligned Hero with Stack Cards

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

PRO

hero82

Left-Aligned Hero with Gradient Overlay

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