Thirty Day Milestones

What good looks like

The numbers we expect you to hit, and when

Published in advance so you can hold us to them. If a practice is behind at any of these points, we call you rather than waiting to be asked.

End of day one

A real clinic has run on it

Every appointment that happened is on the record, and the first invoice has been raised and checked.

100%

of the day's appointments recorded

End of week one

Reception has stopped double-checking

The old system is open for reference rather than for work, and the waiting list is filling cancellations on its own.

< 1

unfilled cancellation per day

End of week two

The second site is live

Capacity is shared across both, and the group view is showing one waiting list rather than two.

2 sites

on one shared rota

Day thirty

Month-end takes an afternoon

Billing reconciles from the appointment record, so the finance review is reading rather than rebuilding.

< 4 hrs

to close the month

Measured from your own records

Nothing here is self-reported. Each figure is counted from the same data your team is entering anyway, and you can see the workings.

Deep green gradient backdrop

Appointments recorded

1,28412.4%

in the first thirty days on the platform

About this block

Thirty Day MilestonesPRO

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.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/onboarding39.tsx, the stats16 progress piece it floats on the tile (installed to components/beste/piece/stats16.tsx), and the badge23 and button21 components it uses for the eyebrow and the action.

Quick start

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

tsx
import { Onboarding39, onboarding39Demo } from "@/components/beste/block/onboarding39";

export default function MilestonesPage() {
  return <Onboarding39 {...onboarding39Demo} />;
}

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

tsx
import { Onboarding39 } from "@/components/beste/block/onboarding39";
import { Stats16 } from "@/components/beste/piece/stats16";

export default function MilestonesPage() {
  return (
    <Onboarding39
      badge={{ label: "What good looks like" }}
      heading="The numbers we expect you to hit, and when"
      description="Published in advance so you can hold us to them."
      milestones={[
        {
          when: "End of day one",
          title: "A real clinic has run on it",
          description: "Every appointment that happened is on the record.",
          target: "100%",
          targetLabel: "of the day's appointments recorded",
        },
        {
          when: "Day thirty",
          title: "Month-end takes an afternoon",
          description: "Billing reconciles from the appointment record.",
          target: "< 4 hrs",
          targetLabel: "to close the month",
        },
      ]}
      media={
        <Stats16
          label="Appointments recorded"
          value="1,284"
          delta="12.4%"
          direction="up"
          caption="in the first thirty days on the platform"
          bars={[18, 32, 44, 51, 60, 71, 79, 92]}
        />
      }
      image={{ src: "/backdrops/green.jpg", alt: "Deep green gradient backdrop" }}
      mediaTitle="Measured from your own records"
      mediaBody="Nothing here is self-reported."
      button={{ label: "Ask about your practice", href: "/contact" }}
    />
  );
}

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
milestonesMilestone[][]Dated milestones, four across from lg
mediaReactNodeLive asset in the closing panel, stats16 in the demo
image{ src: string; alt: string }Backdrop behind the media tile
mediaTitlestringHeading in the closing panel
mediaBodystringParagraph in the closing panel
button{ label: string; href: string }Action in the closing panel
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type Milestone = {
  when: string;
  title: string;
  description: string;
  target: string;
  targetLabel: string;
};

Behavior notes

  • target and targetLabel are both required, and they carry the block's whole argument: a milestone without a checkable number is a promise rather than a milestone.
  • target accepts any string, including comparisons like "< 4 hrs", so it does not use tabular-nums.
  • Cards are flex flex-col with the description marked flex-1, so the target figures align along the bottom across all four regardless of copy length.
  • The target block carries its own border-t, which separates the number from the narrative above it inside each card.
  • The grid is one, two, then four across, so four is the count the layout is tuned for.
  • The closing panel is bg-muted with a bg-background tile inside it, inverting the usual relationship so the tile reads as raised against the panel.
  • The panel row is lg:items-center, so the tile stays centered against the copy beside it.

More Onboarding blocks

View all Onboarding
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

onboarding12

Circular Progress with Checklist

Visual progress tracker featuring a circular percentage indicator with completion stats and task list. Perfect for profile setup flows that encourage users to reach 100% completion.

PRO

onboarding5

Horizontal Steps with Progress Line

Multi-step progress indicator with numbered circles connected by a progress line. Perfect for account setup wizards that show users their completion status.

FREE

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

onboarding9

Step Cards with Numbered Indicators

Animated step wizard with square numbered indicators and content cards for each step. Perfect for product walkthroughs that guide users through key features.

PRO

onboarding6

Vertical Timeline Steps

Vertical timeline layout with step indicators, descriptions, and a connecting progress line. Perfect for workspace setup flows with detailed step explanations.