Full-Bleed Display Hero

Full-bleed image hero with an oversized three-word display heading, a row of monospace meta labels, a bold sub-headline, and a featured card with thumbnail, category, paginated index, and title.

PRO

Hero119: Full-Bleed Display Hero

Full-bleed hero built from a single background photograph under a heavy legibility overlay, with an oversized display headline that scales up to text-9xl and a floating card in the bottom corner that rotates through a list of featured items on a timer, complete with clickable numbered pagination.

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

Base UI flavor

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

This installs the block to components/beste/block/hero119.tsx and its dependencies.

Quick start

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

tsx
import { Hero119, hero119Demo } from "@/components/beste/block/hero119";

export default function Page() {
  return <Hero119 {...hero119Demo} />;
}

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

tsx
import { Hero119 } from "@/components/beste/block/hero119";

export default function Page() {
  return (
    <Hero119
      heading="Design. Build. Ship."
      subheading="Work that holds up past launch day"
      backgroundImage={{
        src: "https://images.unsplash.com/photo-1614998697782-ab0b6514dfb8?w=2000&auto=format&fit=crop",
        alt: "Minimal modern villa exterior",
      }}
      items={[
        {
          image: {
            src: "https://images.unsplash.com/photo-1607874089816-bf5af74fe2c5?w=800&auto=format&fit=crop",
            alt: "Abstract brand identity visual",
          },
          category: "Identity",
          name: "Rivermark Identity",
          location: "Studio project",
          href: "https://beste.co",
        },
        {
          image: {
            src: "https://images.unsplash.com/photo-1674507887748-b4ca61aa0999?w=800&auto=format&fit=crop",
            alt: "Product interface close-up",
          },
          category: "Product",
          name: "Halden Dashboard",
          location: "Case study",
          href: "https://beste.co",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringOversized display headline pinned to the top of the section
subheadingstringSecondary headline anchored bottom-left, beside the featured card
backgroundImageHeroImageFull-bleed background photo behind the legibility overlay
itemsFeaturedItem[][]Items shown one at a time, in rotation, inside the floating card
classNamestringExtra classes for the outer <section>
ts
type HeroImage = { src: string; alt: string };

type FeaturedItem = {
  image: HeroImage;
  category: string;
  name: string;
  location: string;
  href: string;
};

Behavior notes

More Hero blocks

View all Hero
PRO

hero130

Monochrome Hero with Rotating Announcement Ticker

Full-bleed hero with a static background image, a giant display heading, and a slim bordered bar that auto-rotates through short, clickable announcement messages with position dots.

PRO

hero139

Rotating Quote Hero

Full-bleed monochrome hero with a giant display heading over a static image, paired with a card that auto-cycles through testimonials and click-to-select dots.

PRO

hero115

Cinematic Image Hero

Full-bleed background-image hero with a legibility scrim and bottom-aligned eyebrow, headline, copy and CTAs.

PRO

hero137

Slideshow Hero with Click Controls

Full-bleed monochrome hero that crossfades across a set of slides, navigated by explicit previous/next arrows and clickable dots with an auto-loop, plus a caption linking the active slide.

PRO

hero131

Filmstrip Hero

Full-bleed hero whose background crossfades between frames, with a clickable filmstrip of thumbnails pinned along the bottom and an auto-advancing active tile.

PRO

hero141

Capability Marquee Hero

Full-bleed monochrome hero with a giant display heading, short description, and a continuous bottom marquee of capability chips that pauses on hover.