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

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

bento1

Studio Bento Grid

A hand-tiled monochrome bento grid mixing a statement, a stat, an image, a quote, and a CTA into one composition.