Shared Inbox TriagePRO

A shared inbox laid out as hairline rows carrying the member, the subject, an assignee avatar, how long they have waited, and a tone-coded status pill, filtered by status chips with live counts.

Chat26: Shared Inbox Triage

A shared inbox laid out as hairline rows carrying the member, the subject, an assignee avatar, how long they have waited and a tone-coded status pill, filtered by status chips with live counts.

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

Base UI flavor

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

This installs the block to components/beste/block/chat26.tsx plus the badge23 and button21 components it uses for the eyebrow and the action.

Quick start

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

tsx
import { Chat26, chat26Demo } from "@/components/beste/block/chat26";

export default function InboxPage() {
  return <Chat26 {...chat26Demo} />;
}

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

tsx
import { Chat26 } from "@/components/beste/block/chat26";

export default function InboxPage() {
  return (
    <Chat26
      badge={{ label: "The shared inbox" }}
      heading="Every conversation has an owner and a clock"
      description="Nothing sits unclaimed."
      statusLabels={{ open: "Open", waiting: "Waiting on us", closed: "Closed" }}
      allLabel="Everything"
      columns={["Member", "Owner", "Waiting", "Status"]}
      conversations={[
        {
          member: "Rowan Blake",
          subject: "Can I move Wednesday to the afternoon?",
          status: "waiting",
          waiting: "18 min",
          site: "Bramble Health",
          assignee: {
            name: "Priya Nandan",
            avatar: { src: "/people/priya.jpg", alt: "Portrait of Priya Nandan" },
          },
        },
      ]}
      button={{ label: "See how triage works", href: "/product/inbox" }}
    />
  );
}

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
statusLabelsRecord<Status, string>The word shown on each pill and filter chip
allLabelstring"All"Label for the unfiltered chip
columnsstring[][]Column headings, also reused as mobile row labels
conversationsConversation[][]Inbox rows in the order they should read
button{ label: string; href: string }Outline action under the table
classNamestringExtra classes for the outer section
ts
type Status = "open" | "waiting" | "closed";

type ActionLink = {
  label: string;
  href: string;
};

type Assignee = {
  name: string;
  avatar: { src: string; alt: string };
};

type Conversation = {
  member: string;
  subject: string;
  status: Status;
  waiting: string;
  assignee: Assignee;
  site: string;
};

Behavior notes

More Chat blocks

View all Chat
PRO

chat31

Two Sides Of One Conversation

A messaging section splitting a hairline matrix between the staff view and the member view, each half floating its own live asset above a title and a list of what that side gets.

PRO

chat22

Member Inbox And Thread

A two-pane messaging panel: a selectable conversation list with unread dots on the left, and the chosen thread on the right with member and staff bubbles, timestamps, and a composer row.

PRO

chat23

Messaging Overview Split

A messaging section pairing a light heading, a hairline table of response figures, and two actions with an image tile that floats a live conversation thread.

PRO

chat24

Support Channels Grid

A support section listing four linked contact channels as a hairline matrix, each with an icon tile, its response time, and its hours, beside a soft panel floating a live card for whoever is on shift.

PRO

chat25

Ask Your Data Spotlight

An assistant section where question pills swap the image tile beneath them, each floating a live answer card that cites the records it read, closing on three hairline guarantees and one action.

PRO

chat28

Conversation Handover Trail

One member conversation walked through as timestamped hairline rows inside a bordered panel, each naming what happened and either the person who picked it up or the step that ran on its own.