Collage Hero

Split studio hero with a two-tone headline and a four-image arranged collage.

PRO

Hero114: Collage Hero

Split studio hero pairing a two-tone headline, description and dual CTAs with a uniform 2x2 image collage on the opposite column. Each collage tile is a fixed square with its own hover zoom, keeping the grid tidy rather than an irregular masonry layout.

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

Base UI flavor

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

This installs the block to components/beste/block/hero114.tsx, the badge6 component it uses for the eyebrow label, the button1 component it uses for the primary CTA pill, and their dependencies.

Quick start

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

tsx
import { Hero114, hero114Demo } from "@/components/beste/block/hero114";

export default function Page() {
  return <Hero114 {...hero114Demo} />;
}

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

tsx
import { Hero114 } from "@/components/beste/block/hero114";

export default function Page() {
  return (
    <Hero114
      label="Northwind Studio"
      heading="Identity systems that <strong>ship and scale.</strong>"
      description="From first sketch to full brand system, built for teams that move fast."
      buttons={[
        { label: "Start a project", href: "https://beste.co", variant: "primary" },
        { label: "View our work", href: "https://beste.co", variant: "outline" },
      ]}
      images={[
        {
          src: "https://images.unsplash.com/photo-1558655146-d09347e92766?w=800&h=800&fit=crop",
          alt: "Color swatches arranged on a studio desk",
        },
        {
          src: "https://images.unsplash.com/photo-1561070791-2526d30994b5?w=800&h=800&fit=crop",
          alt: "Poster pinned to a studio wall",
        },
        {
          src: "https://images.unsplash.com/photo-1626785774573-4b799315345d?w=800&h=800&fit=crop",
          alt: "Team sketching ideas during a workshop",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
labelstringEyebrow text rendered through Badge6
headingstringHeadline HTML; wrap a phrase in <strong> to render it muted
descriptionstringSupporting paragraph, capped at max-w-xl
buttonsActionButton[][]CTA row; primary renders as a solid pill, outline as a bordered link
imagesImageItem[][]Collage tiles; only the first 4 are rendered
classNamestringExtra classes for the outer <section>
ts
type ActionButton = {
  label: string;
  href: string;
  variant?: "primary" | "outline";
};

type ImageItem = {
  src: string;
  alt: string;
};

Behavior notes

More Hero blocks

View all Hero
PRO

hero112

Editorial Split Hero

Two-column studio hero with a two-tone headline, dual CTAs, tall image and a client wordmark strip.

PRO

hero121

Split Hero with Stats

Split hero with a big headline and CTA on the left, a divided vertical stat rail on the right, and a full-width wide image strip below.

PRO

hero143

Editorial Split Hero

A light editorial hero with an oversized display heading on the left, an offset supporting paragraph and accent button on the right, and a full-bleed image band below.

PRO

hero89

Reverse Split Hero with Testimonial

50/50 split hero with video/image left and content with testimonial quote right

PRO

hero102

Split Hero with Timeline Steps

50/50 split hero with content left and vertical numbered timeline overlay on video right

PRO

hero90

Stacked Hero with Media Top

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