Bottom-aligned fullscreen hero with inset background media and right-side quick link cards
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.
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.
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
npx shadcn add "https://ui.beste.co/r/hero83?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Small label above the heading |
heading | string | – | Main headline |
description | string | – | Supporting paragraph under the heading |
buttons | ButtonItem[] | [] | 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 |
quickLinks | QuickLink[] | [] | Vertical stack of icon link cards on the right side |
invertColor | boolean | true | Switches text, overlay, and card colors between dark-background and light-background styling |
className | string | – | Extra classes for the outer <section> |
type ButtonItem = {
label: string;
href: string;
variant?: "default" | "outline";
icon?: LucideIcon;
};
type QuickLink = {
icon: LucideIcon;
title: string;
description: string;
href: string;
};flex min-h-screen flex-col justify-end, so all content is pinned to the bottom of the viewport rather than centered or top-aligned; text and quickLinks sit side by side only from lg up (lg:flex-row lg:items-end lg:justify-between), stacking vertically below that.bg-gradient-to-t from-black/90 via-black/40 to-transparent), so it is darkest directly behind the text at the bottom of the frame and fades to fully transparent toward the top.{Icon}{button.label}), the reverse order used by most other heroes in this set that put the icon after the label.quickLinks are a vertical column (flex flex-col gap-3) capped at lg:max-w-xs, not a grid; each card still uses the same backdrop-blur-md glass styling and hover-translating arrow (group/hero83) as the grid version in hero81.hero97
Fullscreen bottom-aligned hero with vertical stack cards and inset background video with gradient overlay
hero81
Cinematic fullscreen hero with inset background media and glassmorphism quick-access cards
hero82
Left-aligned fullscreen hero with inset background media and directional gradient overlay
hero93
40/60 asymmetric split hero with narrow content panel and vertical quick links over video
hero85
Cinematic fullscreen hero with inset background video and floating glassmorphism testimonial cards
hero90
Vertical split hero with video/image on top and content section below