Setup Checklist

Getting started

Sixsmallstepstoafinishedsite.

Tick them off in any order. Your progress is kept on this device so you can come back to it later.

2of 6 done

  1. Name the project

    Pick a working title. You can change it at any point and nothing else depends on it.

  2. Choose a design language

    Four calm families to start from. Every section you add afterwards speaks the same one.

  3. Add a homepage

    A hero, a few features and a footer. The agent can draft it from a single sentence.

    Draft it now
  4. Connect a domain

    Point your domain at the project. Certificates are issued in the background.

    Domain settings
  5. Invite a teammate

    Editors see the same pages you do and can publish without asking you.

  6. Publish

    One click. Every page is rendered, cached and served from the edge.

About this block

Setup ChecklistPRO

A setup checklist with a sticky left column: serif headline that settles in word by word, an intro, a large done count over a hairline progress bar that grows as steps are ticked, and a sliding-marker pill. On the right a ruled list of steps, each with a round check button, a serif title that strikes through when done, a description and an optional link.

Onboarding44: Setup Checklist

A checklist that keeps score: round checks you can tick, a count over a hairline that grows as you go, and a line that only appears once every step is done.

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

Base UI flavor

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

This installs the block to components/beste/block/onboarding44.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

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

tsx
import { Onboarding44, onboarding44Demo } from "@/components/beste/block/onboarding44";

export default function Page() {
  return <Onboarding44 {...onboarding44Demo} />;
}

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

tsx
import { Onboarding44 } from "@/components/beste/block/onboarding44";

export default function Page() {
  return (
    <Onboarding44
      eyebrow="Getting started"
      heading="Six small steps to a finished site."
      description="Tick them off in any order."
      progressLabel="of 6 done"
      completeLabel="All set. Your site is ready to publish."
      buttons={[{ label: "Open the editor", href: "/editor" }]}
      steps={[
        { title: "Name the project", description: "Pick a working title.", done: true },
        { title: "Add a homepage", description: "A hero, a few features and a footer.", link: { label: "Draft it now", href: "/draft" } },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, through Text1
descriptionstringParagraph under the heading
progressLabelstringWords after the count, such as of 6 done
completeLabelstringLine shown only when every step is ticked
buttonsActionButton[][]Pill actions under the progress bar
stepsStep[][]The checklist, in order
classNamestringExtra classes for the outer <section>
ts
type Step = {
  title: string;
  description: string;
  link?: { label: string; href: string };
  done?: boolean;
};

type ActionButton = {
  label: string;
  href: string;
  tone?: "primary" | "light" | "dark" | "outline";
};

Behavior notes

  • Ticked state is held in component state seeded from each step's done flag, so the block is interactive out of the box but forgets everything on reload. Lift the state out if you need it to persist.
  • Checks are buttons with role="checkbox" and aria-checked rather than real inputs, which keeps them keyboard operable without a form around them.
  • The progress bar is a scaleX transform on a hairline, so it animates smoothly between any two counts rather than stepping.
  • The count sits in an aria-live region, so a screen reader hears the new total after each tick without being told about the bar.
  • A step's link is hidden once it is ticked, since an action you have already taken is noise in a list you are working down.
  • Titles strike through with a one-pixel decoration and drop to the muted colour when done, which reads as complete without removing the row.
  • The left column is sticky from the large breakpoint up so the score stays visible while you work down a long list.

More Onboarding blocks

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

FREE

onboarding43

Guided Workspace Setup

A two-column setup section: the pitch and what each answer changes on the left, and a one-question-at-a-time wizard on the right that ends in a review of everything it is about to create.

PRO

onboarding31

Three Step Getting Started

A getting-started section with an eyebrow over a hairline rule, a two-column heading, three monospace-numbered steps under their own hairlines, and an accent button.

PRO

onboarding2

Split Layout with Features and Social Proof

Two-column welcome layout with feature checklist, user count, and star ratings alongside an image. Perfect for SaaS onboarding that highlights key benefits and builds trust.

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.