Fullscreen Hero with Quick-Access Cards

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

PRO

Hero81: Fullscreen Hero with Quick-Access Cards

Fullscreen, vertically centered hero over an inset background image or video, with a row of glassmorphism "quick access" cards anchored to the bottom of the viewport for routing visitors toward developer, designer, or team-specific content.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Hero81, hero81Demo } from "@/components/beste/block/hero81";

export default function Page() {
  return <Hero81 {...hero81Demo} />;
}

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

tsx
import { Code, Palette, Users } from "lucide-react";
import { Hero81 } from "@/components/beste/block/hero81";

export default function Page() {
  return (
    <Hero81
      badge={{ label: "Now Available", variant: "secondary" }}
      heading="Experience the next generation of creative tools"
      description="A platform that helps teams build, iterate, and ship products faster."
      buttons={[
        { label: "Start Free Trial", href: "/signup" },
        { label: "See How It Works", href: "/product", variant: "outline" },
      ]}
      backgroundMedia={{ type: "image", src: "https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?w=1600&h=900&fit=crop" }}
      quickLinks={[
        { icon: Code, title: "For Developers", description: "APIs, SDKs, and CLI tools", href: "/developers" },
        { icon: Palette, title: "For Designers", description: "Visual editor and templates", href: "/designers" },
        { icon: Users, title: "For Teams", description: "Collaboration and workflows", href: "/teams" },
      ]}
      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
quickLinksQuickLink[][]Row of icon cards anchored to the bottom of the screen
invertColorbooleantrueSwitches text, overlay, and card colors between dark-background and light-background styling
classNamestringExtra classes for the outer <section>
ts
type QuickLink = {
  icon: LucideIcon;
  title: string;
  description: string;
  href: 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

hero87

Floating Glassmorphism Card Hero

Fullscreen hero with centered glassmorphism card floating over inset background video

PRO

hero83

Bottom-Aligned Hero with Quick Links

Bottom-aligned fullscreen hero with inset background media and right-side quick link cards

PRO

hero86

Fullscreen Hero with Logo Cloud

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

PRO

hero97

Bottom-Aligned Hero with Stack Cards

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

PRO

hero100

Fullscreen Hero with Browser Mockup

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