Overlapping Material CollagePRO

Feature split pairing a three-image collage, where a square crop overlaps the tall frame behind a background-coloured edge, with a statement and a ruled key-value list of material facts.

Feature252: Overlapping Material Collage

Three photographs arranged as a collage, one overlapping the other on a background-coloured edge, beside a statement, a ruled list of facts and a pill CTA. Built for material, texture and sample-set stories.

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

Base UI flavor

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

This installs the block to components/beste/block/feature252.tsx plus the badge7 eyebrow and button12 pill button it uses.

Quick start

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

tsx
import { Feature252, feature252Demo } from "@/components/beste/block/feature252";

export default function Page() {
  return <Feature252 {...feature252Demo} />;
}

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

tsx
import { Feature252 } from "@/components/beste/block/feature252";

export default function Page() {
  return (
    <Feature252
      badge={{ label: "Materials" }}
      heading="Paper, cloth and metal, chosen in that order."
      description="We specify materials before layouts, because the material decides what the layout can do."
      labels={{ collageCaption: "Sample set, autumn" }}
      images={[
        { src: "/materials/cloth.jpg", alt: "Folded fabric bolts" },
        { src: "/materials/matte.jpg", alt: "Textured matte material" },
        { src: "/materials/edge.jpg", alt: "Brushed aluminium edge" },
      ]}
      facts={[
        { title: "Uncoated stocks in rotation", value: "6" },
        { title: "Cloth suppliers, all in Europe", value: "3" },
      ]}
      button={{ label: "Ask for the sample set", href: "/contact" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading in the text column
descriptionstringSupporting paragraph under the heading
imagesCollageImage[][]Up to three photographs, read positionally
factsCollageFact[][]Ruled list under the paragraph
buttonActionButtonPill CTA, rendered as Button12
labelsFeature252Labels{}Fixed strings that are not content: the collage caption
classNamestringExtra classes for the outer <section>
ts
type CollageImage = {
  src: string;
  alt: string;
};

type CollageFact = {
  title: string;
  value: string;
};

type ActionButton = {
  label: string;
  href: string;
};

type Feature252Labels = {
  collageCaption?: string;
};

Behavior notes

More Feature blocks

View all Feature
PRO

feature157

Split Image with Bullet List

Two-column layout with left text content and right image, reversible. Perfect for feature explanation, product story, or benefit illustration.

PRO

feature185

Image Feature Cards Grid over Media

Three-column image feature cards grid with sticky header over background media and glass-morphism styling

PRO

feature183

Split Image Card with Feature Stack

Two-column layout with large image card on left and stacked glass feature cards on right

PRO

feature217

Impact Grid With Media

Centered eyebrow, heading and dark CTA above a split block: a tall labeled image on the left and a two-by-two grid of icon feature cards on the right.

PRO

feature215

Feature Showcase Trio

Centered header above a three-card showcase: a tagged copy panel with CTA, a centered preview, and a divided list of included benefits.

PRO

feature220

Zigzag Feature Rows

Centered header above three zigzag rows, each pairing a 4:3 image with a title, description, and tag chips on alternating sides.