Go-Live Day AgendaFREE

A first-day agenda held in one bordered panel, with timestamped hairline rows naming what happens, who is needed, how long it takes, and which parts are optional.

Onboarding36: Go-Live Day Agenda

A first-day agenda held in one bordered panel, with timestamped hairline rows naming what happens, who is needed, how long it takes and which parts are optional.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/onboarding36"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/onboarding36"

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

Quick start

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

tsx
import { Onboarding36, onboarding36Demo } from "@/components/beste/block/onboarding36";

export default function GoLivePage() {
  return <Onboarding36 {...onboarding36Demo} />;
}

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

tsx
import { Onboarding36 } from "@/components/beste/block/onboarding36";

export default function GoLivePage() {
  return (
    <Onboarding36
      badge={{ label: "Day one" }}
      heading="The whole first day, hour by hour, written down in advance"
      description="So you can see how much of your team's time this actually costs."
      dayLabel="A typical go-live Monday"
      entries={[
        {
          time: "08:00",
          title: "We watch, you work",
          description: "Your normal morning runs on the new system while two of us sit on a call.",
          who: "Your team, as usual",
        },
        {
          time: "13:00",
          title: "Clinician walkthrough",
          description: "Ten minutes on the record and the note template.",
          who: "Clinicians, 10 minutes each",
          optional: true,
        },
      ]}
      optionalLabel="Optional"
      closing="Nothing above needs a room booked or a training day."
      button={{ label: "Book a go-live date", href: "/go-live" }}
    />
  );
}

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
dayLabelstringPanel header naming the day
entriesAgendaEntry[][]The agenda, in the order it happens
optionalLabelstringThe word shown on optional entries
closingstringParagraph beside the closing action
button{ label: string; href: string }Booking action
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type AgendaEntry = {
  time: string;
  title: string;
  description: string;
  who: string;
  optional?: boolean;
};

Behavior notes

More Onboarding blocks

View all Onboarding
PRO

onboarding39

Thirty Day Milestones

An onboarding section setting out four dated milestones as bordered cards, each closing on the figure it should hit, above a soft panel that floats a live progress metric on an image tile.

PRO

onboarding34

Role Based Getting Started

A getting-started section whose role pills swap a sticky summary column and the numbered steps beside it, each step carrying its own title, explanation, and honest time estimate.

PRO

onboarding7

Progress Bar with Task Checklist

Card-based progress tracker showing completion percentage and a checklist of tasks with visual status. Perfect for gamified onboarding that motivates users to finish setup.

PRO

onboarding33

Interactive Setup Checklist

A setup panel pairing a soft progress column, where an oversized percentage and accent bar react to what is ticked, with hairline checklist rows that each carry a description and a jump-in link.

PRO

onboarding35

Tracked Setup Sequence

A setup section listing four numbered steps with who owns each one, against a column that sticks while they scroll and floats a live step tracker on an image tile.

PRO

onboarding41

Migration Risk Register

A candid onboarding section listing what tends to go wrong on hairline rows, each with a tone-coded frequency chip, how often it has been seen, and the mitigation already in place.