Figures On Photographs BentoPRO

Metrics mosaic where every figure sits on the photograph it came from behind a tinted scrim, the lead result spanning four columns and two rows, closed by a soft methodology tile explaining where the numbers come from.

Bento8: Figures On Photographs Bento

A results section where every number sits on the picture that produced it. The first figure takes a large tile with its explanation, the rest become smaller tiles carrying value and title only, and a soft method tile closes the row with the source of the data.

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

Base UI flavor

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

This installs the block to components/beste/block/bento8.tsx plus the badge7 eyebrow it uses.

Quick start

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

tsx
import { Bento8, bento8Demo } from "@/components/beste/block/bento8";

export default function Page() {
  return <Bento8 {...bento8Demo} />;
}

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

tsx
import { Bento8 } from "@/components/beste/block/bento8";

export default function Page() {
  return (
    <Bento8
      badge={{ label: "Counted" }}
      heading="Four figures, each with the picture that earned it."
      description="Put a statistic back on the work it came from and it means something."
      tiles={[
        {
          src: "/results/catalogue.jpg",
          alt: "Open print publication",
          value: "12,000",
          title: "Copies in the first run",
          description: "The catalogue sold out before the reprint was scheduled.",
        },
        {
          src: "/results/signage.jpg",
          alt: "Signage across a lobby wall",
          value: "1,400",
          title: "Signs installed",
          description: "Across nine buildings, from a kit of eleven components.",
        },
      ]}
      method={{
        title: "Where these come from",
        description: "Client reporting and install sheets. Nothing modelled or rounded up.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading in the left header column
descriptionstringSupporting paragraph in the right header column
tilesFigureTile[][]Figure tiles; the first one takes the large lead tile
methodMethodTileSoft tile explaining where the numbers come from
classNamestringExtra classes for the outer <section>
ts
type FigureTile = {
  src: string;
  alt: string;
  value: string;
  title: string;
  description: string;
};

type MethodTile = {
  title: string;
  description: string;
};

Behavior notes

More Bento blocks

View all Bento
PRO

bento3

Selected Work Bento

Work mosaic on a six-column track mixing photographic tiles that carry their caption inside on a gradient scrim with a soft statement tile and an inverted figure tile, the lead project spanning four columns and two rows.

PRO

bento9

Editorial Issue Bento

Magazine mosaic whose cover story fills a two-row photographic tile with its category and page count on the scrim, beside an inverted figure tile, a bordered publication note and three soft article tiles.

PRO

bento11

Product Surface Mosaic

A six-column bento mixing a lead card whose image tile floats a live metrics panel, a soft statement tile, an inverted figure tile, a second asset tile carrying an uptime strip, a hairline inclusion list, and a captioned photograph.

PRO

bento6

Object Study Bento

Product mosaic pairing a two-row hero photograph captioned on its scrim with a tall specification tile, then two square macro tiles that carry their caption inside and an inverted figure tile closing the row.

PRO

bento4

Service Bento With Figure

Service mosaic whose lead tile floats a photo-strip media piece over a dotted field between its eyebrow and statement, beside a photographic tile captioned on its scrim, an inverted figure tile and three soft icon tiles.

PRO

bento12

Evidence Mosaic

A six-column bento of proof: a row of figure tiles with the first inverted, a tall card whose image tile floats a live breakdown chart, a tile carrying a customer quote card, and a soft note on method.