Bottom-Aligned Hero with Quick Links

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

PRO

Fullscreen hero with content pinned to the bottom of the viewport: heading, description, and buttons on the left, a vertical stack of quick-access link cards on the right, over an inset background image or video darkened by a bottom-up gradient.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Hero83, hero83Demo } from "@/components/beste/block/hero83";

export default function Page() {
  return <Hero83 {...hero83Demo} />;
}

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

tsx
import { Code, Palette, Play } from "lucide-react";
import { Hero83 } from "@/components/beste/block/hero83";

export default function Page() {
  return (
    <Hero83
      heading="Ship products your customers will love"
      description="The all-in-one platform for building, testing, and deploying modern web apps."
      buttons={[
        { label: "Start Building", href: "/signup" },
        { label: "Watch Demo", href: "/demo", variant: "outline", icon: Play },
      ]}
      backgroundMedia={{ type: "image", src: "https://images.unsplash.com/photo-1546012112-142c81b59a42?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" },
      ]}
      invertColor
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Small label above the heading
headingstringMain headline
descriptionstringSupporting paragraph under the heading
buttonsButtonItem[][]CTA buttons rendered left-aligned; each can carry its own leading icon
backgroundMedia{ type: "image" | "video"; src: string; alt?: string }Full-viewport inset image or video behind the content
quickLinksQuickLink[][]Vertical stack of icon link cards on the right side
invertColorbooleantrueSwitches text, overlay, and card colors between dark-background and light-background styling
classNamestringExtra classes for the outer <section>
ts
type ButtonItem = {
  label: string;
  href: string;
  variant?: "default" | "outline";
  icon?: LucideIcon;
};

type QuickLink = {
  icon: LucideIcon;
  title: string;
  description: string;
  href: 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

hero81

Fullscreen Hero with Quick-Access Cards

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

PRO

hero82

Left-Aligned Hero with Gradient Overlay

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

PRO

hero93

Asymmetric Split Hero with Quick Links

40/60 asymmetric split hero with narrow content panel and vertical quick links over video

PRO

hero85

Fullscreen Hero with Floating Testimonials

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

PRO

hero90

Stacked Hero with Media Top

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