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.
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.
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
npx shadcn add "https://ui.beste.co/r/onboarding39?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow above the hairline rule, rendered through Badge23 |
heading | string | – | Section heading in the left column of the header |
description | string | – | Supporting paragraph, right-aligned from md up |
milestones | Milestone[] | [] | Dated milestones, four across from lg |
media | ReactNode | – | Live asset in the closing panel, stats16 in the demo |
image | { src: string; alt: string } | – | Backdrop behind the media tile |
mediaTitle | string | – | Heading in the closing panel |
mediaBody | string | – | Paragraph in the closing panel |
button | { label: string; href: string } | – | Action in the closing panel |
className | string | – | Extra classes for the outer section |
type ActionLink = {
label: string;
href: string;
};
type Milestone = {
when: string;
title: string;
description: string;
target: string;
targetLabel: string;
};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.flex flex-col with the description marked flex-1, so the target figures align along the bottom across all four regardless of copy length.border-t, which separates the number from the narrative above it inside each card.bg-muted with a bg-background tile inside it, inverting the usual relationship so the tile reads as raised against the panel.lg:items-center, so the tile stays centered against the copy beside it.onboarding7
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.
onboarding12
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.
onboarding5
Multi-step progress indicator with numbered circles connected by a progress line. Perfect for account setup wizards that show users their completion status.
onboarding36
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.