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

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.