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.
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.
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
npx shadcn add "https://ui.beste.co/r/bento7?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow label rendered as a Badge7 |
heading | string | – | Section heading above the mosaic |
people | Person[] | [] | Portrait tiles; the first one takes the tall lead tile |
quote | TeamQuote | – | Wide inverted tile holding one quote and its attribution |
figure | FigureTile | – | Soft tile holding one number about the team |
className | string | – | Extra classes for the outer <section> |
type Person = {
src: string;
alt: string;
name: string;
role: string;
};
type TeamQuote = {
quote: string;
name: string;
role: string;
};
type FigureTile = {
value: string;
title: string;
};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.figure and figcaption elements, with the name and role on a gradient scrim inside the picture rather than underneath it.text-background tokens are hardcoded because that surface is fixed rather than adaptive.bg-muted with theme tokens, which stops the grid from carrying two competing dark blocks.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.quote or figure and the portraits simply reflow through the same six-column grid.bento2
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.
bento6
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.
bento3
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.
bento4
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.