Full-Bleed Display Hero

Minimal modern villa exterior

Brand. Build. Launch.

Design made to outlast the launch

Abstract brand identity visual
Identity
Rivermark Identity

Studio project

About this block

Full-Bleed Display HeroPRO

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.

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.

Upgrade Now

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

  • items rotates automatically every 4000ms via a setInterval inside useEffect, advancing with (current + 1) % items.length; the effect is skipped entirely when there are 0 or 1 items, so nothing ever ticks for a single-item array.
  • The floating card's numbered buttons (01, 02, ...) let a visitor jump straight to any item and set aria-current on the active one, but clicking does not pause or restart the 4-second auto-advance timer underneath it.
  • A single bg-gradient-to-t from-foreground/70 via-foreground/20 to-foreground/40 layer sits between the photo and the text, darkest at the bottom, to keep the light heading and card readable over any image.
  • The section height is fixed (min-h-[600px] on mobile, md:min-h-[760px]) rather than 100vh; it is not flagged fullscreen in .meta.ts, so it renders inline rather than in an iframe.
  • Layout is a single flex column with justify-between: the giant heading sits at the top, the subheading and floating card sit at the bottom and only switch from stacked to a row at lg.

More Hero blocks

View all Hero
PRO

hero146

Full Bleed Image Hero

A full-bleed photographic hero with a gradient scrim, an eyebrow over an oversized light heading, paired accent and hairline actions, and a three-figure proof row along the bottom rule.

PRO

hero157

Full-Bleed Canvas Hero

A hero that splits the viewport in two: an eyebrow, light display heading, two actions, and a hairline proof row on one side, and a full-height photo column floating a live trend metric on the other.

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

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.