Multi-step Booking Wizard

Stepper-based booking flow with numbered progress dots, animated progress bar, and four steps: service selection, schedule, contact details, and review. Back/Next navigation, per-step validation, and a live summary.

PRO

Booking19: Multi-step Booking Wizard

A single-card booking wizard that walks a customer through four internally-tracked steps (service, schedule, contact, review) with a numbered dot stepper, an animated percentage progress bar, per-step validation gating the Next button, and a final live summary of the selected service, date/time, and contact details.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/booking19.tsx, plus the badge, button, input, and label shadcn/ui primitives it uses for the eyebrow badge, navigation buttons, and the contact-step form fields.

Quick start

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

tsx
import { Booking19, booking19Demo } from "@/components/beste/block/booking19";

export default function Page() {
  return <Booking19 {...booking19Demo} />;
}

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

tsx
import { Briefcase, Sparkles } from "lucide-react";
import { Booking19 } from "@/components/beste/block/booking19";

export default function Page() {
  return (
    <Booking19
      badge={{ label: "Multi-step", variant: "secondary" }}
      heading="Book in <strong>four steps</strong>"
      description="A guided wizard for service, schedule, contact, and review."
      currency="$"
      services={[
        {
          value: "consult",
          label: "Strategy Consultation",
          description: "45-minute call to map out your next 90 days",
          duration: "45 min",
          price: 120,
          icon: Briefcase,
        },
        {
          value: "audit",
          label: "Brand Audit",
          description: "In-depth review of your brand touchpoints",
          duration: "90 min",
          price: 240,
          icon: Sparkles,
        },
      ]}
      timeSlots={["09:00", "10:00", "11:00", "13:00", "14:00"]}
      steps={[
        { key: "service", label: "Service", description: "Pick what you need" },
        { key: "schedule", label: "Schedule", description: "Choose a time" },
        { key: "contact", label: "Your details", description: "How we'll reach you" },
        { key: "review", label: "Review", description: "Confirm and book" },
      ]}
      labels={{ nextButton: "Next", backButton: "Back", confirmButton: "Confirm booking" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Section eyebrow badge above the heading
headingstringSection heading, supports inline <strong>
descriptionstringSub-copy under the heading
currencystring"$"Prefix prepended to every numeric price
servicesBooking19Service[][]Selectable service rows on step one
timeSlotsstring[][]Time-slot buttons rendered in the schedule step's 4-column grid
stepsBooking19Step[][]Ordered step definitions; drives the dot stepper, progress, and which content panel renders
labelsBooking19Labels{}All inline copy for counters, field labels, placeholders, and buttons
classNamestringExtra classes for the outer <section>
ts
type Booking19Service = {
  value: string;
  label: string;
  description: string;
  duration: string;
  price: number;
  icon: LucideIcon;
};

type Booking19Step = {
  key: "service" | "schedule" | "contact" | "review";
  label: string;
  description: string;
};

type Booking19Labels = {
  stepCounterTemplate?: string;
  serviceLabel?: string;
  dateLabel?: string;
  timeLabel?: string;
  nameLabel?: string;
  emailLabel?: string;
  phoneLabel?: string;
  notesLabel?: string;
  namePlaceholder?: string;
  emailPlaceholder?: string;
  phonePlaceholder?: string;
  notesPlaceholder?: string;
  reviewHeading?: string;
  backButton?: string;
  nextButton?: string;
  confirmButton?: string;
  todayLabel?: string;
  totalLabel?: string;
};

Behavior notes

Wiring the form up

This block ships the form markup only; state, validation, and submit are yours to add. Our guide wires the shadcn Field primitives to React Hook Form, TanStack Form, and Formisch on one field system.

More Booking blocks

View all Booking
PRO

booking6

Restaurant Reservation

Restaurant table reservation with guest count selector, date/time picker, seating preference (indoor/outdoor/bar), special requests textarea, and booking summary. Fine dining reservation flow.

PRO

booking1

Date & Time Picker

Split-panel booking interface with interactive monthly calendar on the left and time slot grid on the right. Features today highlight, disabled dates, selected state, morning/afternoon grouping, and booking summary footer.

PRO

booking9

Event Ticket Booking

Event ticket selection with event banner, date/venue info, ticket tier cards (General/VIP/Backstage) with perks list, quantity selector, and order total. Concert and conference ticket flow.

PRO

booking8

Flight Booking

Flight search results with airline logos, departure/arrival times, duration, stops, class selector (economy/business/first), baggage info, and price comparison. Airline ticket booking flow.

PRO

booking18

Cinema Seat Picker

Interactive seat selection grid for cinemas, theaters, and events. Row/column layout with an aisle gap, tier-based pricing (standard/premium/VIP), occupied seats, a live selection summary, and a legend. Includes screen indicator at the top.

PRO

booking23

Cancellation Flow

Booking cancellation screen with the original booking summary, cancellation reason picker (radio list with optional notes), live refund breakdown based on cancellation policy, confirmation checkbox, and destructive cancel action.