Selected Work Bento

(The roster of five)

Five projects, arranged the way they were hung.

Signage system mounted across a minimal lobby wall

Kestrel Group

Wayfinding and signage

Three at a time, never four

A slot opens when something ships, and the waiting list moves by one name.

Ask about the next slot

212

Commissions finished since 2014

Minimal coffee packaging arranged on a concrete surface

Marchetti Coffee

Packaging

Spread of a printed editorial type specimen

Hallvard Press

Editorial system

Close detail of a minimal control surface

Norvik Audio

Product interface

About this block

Selected Work BentoPRO

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.

Bento3: Selected Work Bento

A portfolio index hung as a mosaic. One project takes the large tile, the smaller ones sit beside a dark figure and a statement tile that carries its own text link, and every caption lives on the photograph rather than under it.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Bento3, bento3Demo } from "@/components/beste/block/bento3";

export default function Page() {
  return <Bento3 {...bento3Demo} />;
}

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

tsx
import { Bento3 } from "@/components/beste/block/bento3";

export default function Page() {
  return (
    <Bento3
      badge={{ label: "Selected work" }}
      heading="Five projects, arranged the way they were hung."
      tiles={[
        {
          src: "/work/kestrel.jpg",
          alt: "Signage across a lobby wall",
          title: "Kestrel Group",
          meta: "Wayfinding and signage",
          href: "/work/kestrel",
        },
        {
          src: "/work/marchetti.jpg",
          alt: "Coffee packaging on concrete",
          title: "Marchetti Coffee",
          meta: "Packaging",
          href: "/work/marchetti",
        },
      ]}
      figure={{ value: "212", title: "Commissions finished since 2014" }}
      statement={{
        title: "Three at a time, never four",
        description: "A slot opens when something ships.",
        buttonLabel: "Ask about the next slot",
        href: "/contact",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading above the mosaic
tilesWorkTile[][]Project tiles; the first one takes the large lead tile
figureFigureTileInverted dark tile holding one number
statementStatementTileSoft tile with a title, a paragraph and an underlined text link
classNamestringExtra classes for the outer <section>
ts
type WorkTile = {
  src: string;
  alt: string;
  title: string;
  meta: string;
  href: string;
};

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

type StatementTile = {
  title: string;
  description: string;
  buttonLabel: string;
  href: string;
};

Behavior notes

  • The first entry in tiles is destructured out as the lead: it spans md:col-span-4 md:row-span-2 and gets a larger title, so ordering the array is how you choose the hero project.
  • Every tile is a Link across its whole area, so the photograph, the title and the meta line are one target rather than a small link under an image.
  • Captions sit on the image over a from-foreground/85 gradient scrim, which is what keeps the mosaic readable when it collapses to a single column on a phone.
  • Photo tiles carry aspect-[4/3] below md and switch to md:aspect-auto, letting the grid rows (md:auto-rows-[minmax(13rem,auto)]) decide their height on desktop instead of the image ratio.
  • Only the figure tile is inverted, so the mosaic has exactly one dark anchor; its text-background tokens are hardcoded because that surface is fixed rather than adaptive.
  • The statement tile uses justify-between, so its link stays pinned to the bottom edge no matter how long the paragraph runs.
  • Tiles fill six columns per row (4+2, 4+2, then 2+2+2), so four project tiles plus the figure and statement leave no gap at the end of a row.

More Bento blocks

View all Bento
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

bento15

Practice Bento

One mosaic of six tiles: a large photograph that drifts inside its tile, an ink quote tile with film grain, a serif figure that counts up, a small photograph, an hours sheet and a call-to-action tile with a sliding-marker pill, each rising into view in turn.

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

bento2

Studio Summary Bento

Studio mosaic whose lead tile floats a mood-board media piece over a dotted field between its own eyebrow and statement, beside a photographic tile captioned on its scrim, an inverted figure tile, a soft quote tile and a bordered CTA tile.

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

bento13

Onboarding Mosaic

A six-column bento for getting started: a wide card floating a live step tracker, a numbered week list on hairlines, an inverted quote tile, and a capture card holding a working email row.