Studio People Bento

(Who is here)

Everyone you would actually work with.

Laptop and notebook on a bare worktable

Ilse Brandt

Type and editorial

Nobody here hands work down. If your name is on the project you are the one sitting in the review.
Ilse Brandt, Founding partner
Sketches and signage drafts pinned to a desk

Ravi Suleiman

Environments

Studio monitor showing a website layout in progress

Nora Aldridge

Interface

6.4

Average years on the team

Desk covered in printed type specimens

Teodor Vance

Production

About this block

Studio People BentoPRO

Team mosaic where portraits carry their name and role inside the tile on a scrim, interleaved with an inverted quote tile and a wide soft tenure figure tile that closes the grid flush.

Bento7: Studio People Bento

A team section that reads as a wall of portraits rather than a card list. One person takes the tall lead tile, a wide inverted quote sits beside it, and a plain figure tile is worked into the run so the grid never ends on an empty column.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Bento7, bento7Demo } from "@/components/beste/block/bento7";

export default function Page() {
  return <Bento7 {...bento7Demo} />;
}

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

tsx
import { Bento7 } from "@/components/beste/block/bento7";

export default function Page() {
  return (
    <Bento7
      badge={{ label: "Who is here" }}
      heading="Everyone you would actually work with."
      people={[
        { src: "/team/ilse.jpg", alt: "Worktable", name: "Ilse Brandt", role: "Type and editorial" },
        { src: "/team/ravi.jpg", alt: "Signage drafts", name: "Ravi Suleiman", role: "Environments" },
        { src: "/team/nora.jpg", alt: "Studio monitor", name: "Nora Aldridge", role: "Interface" },
        { src: "/team/teodor.jpg", alt: "Specimen desk", name: "Teodor Vance", role: "Production" },
      ]}
      quote={{
        quote: "If your name is on the project you are the one sitting in the review.",
        name: "Ilse Brandt",
        role: "Founding partner",
      }}
      figure={{ value: "6.4", title: "Average years on the team" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading above the mosaic
peoplePerson[][]Portrait tiles; the first one takes the tall lead tile
quoteTeamQuoteWide inverted tile holding one quote and its attribution
figureFigureTileSoft tile holding one number about the team
classNamestringExtra classes for the outer <section>
ts
type Person = {
  src: string;
  alt: string;
  name: string;
  role: string;
};

type TeamQuote = {
  quote: string;
  name: string;
  role: string;
};

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

Behavior notes

  • The first entry in people becomes the lead portrait at md:col-span-2 md:row-span-2 with a larger name, so ordering the array decides who anchors the wall.
  • The rest are split deliberately: the next two portraits sit beside the quote, the figure tile takes the four columns after them, and anything from the fourth person on continues after it. That is what keeps every row of six columns full.
  • Portraits render as real figure and figcaption elements, with the name and role on a gradient scrim inside the picture rather than underneath it.
  • The quote tile is the only inverted surface, so the section has one dark anchor; its text-background tokens are hardcoded because that surface is fixed rather than adaptive.
  • The figure tile stays on bg-muted with theme tokens, which stops the grid from carrying two competing dark blocks.
  • Portrait tiles hold aspect-[3/4] below md and switch to md:aspect-auto, so md:auto-rows-[minmax(13rem,auto)] sets their height on desktop while phones keep a proper portrait crop.
  • Every part is optional: drop quote or figure and the portraits simply reflow through the same six-column grid.

More Bento blocks

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

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

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

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

bento10

Visit The Studio Bento

Location mosaic mixing photographic tiles captioned on their own scrim with an inverted address tile carrying a directions link, a soft opening-hours tile and a full-width bordered visit row whose pill CTA sits opposite the copy.

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.