Bottom-Aligned Hero with Stack Cards

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

PRO

Hero97: Bottom-Aligned Hero with Stack Cards

Fullscreen hero whose content sits pinned to the bottom of the viewport rather than centered or split, over an inset, rounded video or image panel with a gradient that darkens toward the bottom where the text sits. The bottom row itself splits into heading/description/button text on the left and a vertical stack of clickable link cards on the right.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Hero97, hero97Demo } from "@/components/beste/block/hero97";

export default function Page() {
  return <Hero97 {...hero97Demo} />;
}

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

tsx
import { Cpu, Layers } from "lucide-react";
import { Hero97 } from "@/components/beste/block/hero97";

export default function Page() {
  return (
    <Hero97
      badge={{ label: "Tech Stack", variant: "secondary" }}
      heading="The modern stack for ambitious teams"
      description="Modular building blocks that work together seamlessly."
      buttons={[{ label: "Explore Stack", href: "/stack", variant: "default" }]}
      backgroundMedia={{ type: "image", src: "/hero/stack.jpg", alt: "Server racks" }}
      stackCards={[
        { icon: Layers, title: "Frontend SDK", description: "Build with what you love", href: "/docs/frontend" },
        { icon: Cpu, title: "Compute Engine", description: "Serverless at the edge", href: "/docs/compute" },
      ]}
      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 bottom-aligned content
stackCardsStackCard[][]Clickable link cards stacked on the right
invertColorbooleantrueSwitches text and card colors between dark-media and light-media treatments
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 StackCard = { icon: LucideIcon; title: string; description: string; href: string };

Behavior notes

More Hero blocks

View all Hero
PRO

hero83

Bottom-Aligned Hero with Quick Links

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

PRO

hero82

Left-Aligned Hero with Gradient Overlay

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

PRO

hero90

Stacked Hero with Media Top

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

PRO

hero85

Fullscreen Hero with Floating Testimonials

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

PRO

hero81

Fullscreen Hero with Quick-Access Cards

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

PRO

hero87

Floating Glassmorphism Card Hero

Fullscreen hero with centered glassmorphism card floating over inset background video