Product Surface MosaicPRO

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.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/bento11.tsx, the dashboard33 and indicator14 pieces it floats on the two asset tiles (installed to components/beste/piece/{name}.tsx), and the badge23 component it uses for the eyebrow.

Quick start

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

tsx
import { Bento11, bento11Demo } from "@/components/beste/block/bento11";

export default function Page() {
  return <Bento11 {...bento11Demo} />;
}

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

tsx
import { Bento11 } from "@/components/beste/block/bento11";
import { Dashboard33 } from "@/components/beste/piece/dashboard33";
import { Indicator14 } from "@/components/beste/piece/indicator14";

export default function Page() {
  return (
    <Bento11
      badge={{ label: "The whole surface" }}
      heading="One workspace, seen from six angles"
      description="Every tile below is the same data, read by a different person."
      lead={{
        kicker: "Overview",
        title: "The week, already counted",
        description: "Bookings, no-shows, and clinical hours are totalled as the work happens.",
        media: (
          <Dashboard33
            title="This week"
            range="Mon to Sun"
            items={[{ label: "Booked", value: "142", delta: "+9", direction: "up" }]}
          />
        ),
        image: { src: "/backdrops/blue.jpg", alt: "Soft blue gradient backdrop" },
      }}
      statement={{
        title: "Built for the eleven people who touch a record",
        description: "Roles read like jobs and every change writes itself into the log.",
      }}
      figure={{ value: "99.95%", title: "availability we sign for" }}
      asset={{
        kicker: "Reliability",
        title: "Published, not promised",
        description: "Forty-five days of service history, updated hourly.",
        media: <Indicator14 title="Booking service" uptime="99.98%" range="Last 45 days" />,
      }}
      list={{ title: "Included on every plan", items: ["Multi-site rota", "Audit log"] }}
      photo={{
        caption: "Bramble Health, Bristol",
        image: { src: "/clinic/reception.jpg", alt: "A clinician in a bright clinic" },
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the hairline rule, rendered through Badge23
headingstringSection heading in the left column of the header
descriptionstringSupporting paragraph, right-aligned from md up
leadMediaTileLarge card, four columns wide and two rows tall
statementStatementTileSoft two-column tile of copy
figureFigureTileInverted two-column tile carrying one number
assetMediaTileThree-column card with a second live asset
photoPhotoTileTwo-column photograph with a gradient caption
listListTileOne-column hairline list of inclusions
classNamestringExtra classes for the outer section
ts
type TileImage = {
  src: string;
  alt: string;
};

type MediaTile = {
  kicker: string;
  title: string;
  description: string;
  media: ReactNode;
  image?: TileImage;
};

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

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

type PhotoTile = {
  caption: string;
  image: TileImage;
};

type ListTile = {
  title: string;
  items: 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

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

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

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.

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.

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.