Conversation Handover TrailPRO

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.

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.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Chat28, chat28Demo } from "@/components/beste/block/chat28";

export default function HandoverPage() {
  return <Chat28 {...chat28Demo} />;
}

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

tsx
import { Chat28 } from "@/components/beste/block/chat28";

export default function HandoverPage() {
  return (
    <Chat28
      badge={{ label: "One thread" }}
      heading="Three people, two shifts, and the member never repeated herself"
      description="This is a real conversation, shortened."
      threadLabel="Rowan Blake · moving a Wednesday appointment"
      entries={[
        {
          time: "08:12",
          action: "Member writes in",
          detail: "Asks to move Wednesday to an afternoon, mentions she is fasting.",
          system: "Arrives on her record, not in a shared inbox",
        },
        {
          time: "08:19",
          action: "Front desk picks it up",
          detail: "Sees the fasting note and does not offer a morning slot.",
          actor: {
            name: "Maya Coleman",
            role: "Reception, Bramble Health",
            avatar: { src: "/people/maya.jpg", alt: "Portrait of Maya Coleman" },
          },
        },
      ]}
      closing="The whole exchange took four messages."
      button={{ label: "See how handover works", href: "/product/handover" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the heading, rendered through Badge23
headingstringSection heading, capped at max-w-2xl
descriptionstringSupporting paragraph, capped at max-w-xl
threadLabelstringThread identifier across the top of the panel
entriesHandoverEntry[][]The trail, in the order it happened
closingstringParagraph beside the closing action
button{ label: string; href: string }Outline closing action
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type Actor = {
  name: string;
  role: string;
  avatar: { src: string; alt: string };
};

type HandoverEntry = {
  time: string;
  action: string;
  detail: string;
  actor?: Actor;
  system?: 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

chat12

Conversational Thread with Reactions

Chat message thread with rich formatting, copy and thumbs-up/down action buttons on AI messages, and time-grouped message sections. Features hover-revealed action bars and smooth animations.

PRO

chat27

Inverted Out Of Hours Panel

A support section built as one dark panel, with a light heading, three hairline promises about who answers, two actions, and a bordered column floating a live on-call conversation.

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

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.