Home Cleaning Service Booking

Residential cleaning service booking with service type tabs (standard/deep/move-out), bedroom/bathroom selectors, recurring frequency pills, add-ons checklist, date picker, estimated duration, and price breakdown footer.

PRO

Booking16: Home Cleaning Service Booking

A single-column residential cleaning booking card that lets a visitor pick a service tier via Tabs, choose bedroom and bathroom counts from Select dropdowns, toggle a recurring-frequency pill grid, check optional add-ons, and select a date from a Popover calendar, while a sticky summary footer recomputes estimated duration, base price, recurring discount, and total live from those inputs.

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

Base UI flavor

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

This installs the block to components/beste/block/booking16.tsx, plus the badge, button, calendar, checkbox, popover, select, and tabs shadcn/ui primitives it uses for the eyebrow badge, book button, date picker, add-on toggles, calendar popover, room selectors, and service-tier tabs.

Quick start

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

tsx
import { Booking16, booking16Demo } from "@/components/beste/block/booking16";

export default function Page() {
  return <Booking16 {...booking16Demo} />;
}

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

tsx
import { Booking16 } from "@/components/beste/block/booking16";

export default function Page() {
  return (
    <Booking16
      badge={{ label: "Home services", variant: "secondary" }}
      heading="Book a <strong>cleaning</strong>"
      currency="$"
      serviceTiers={[
        { value: "standard", label: "Standard", hourlyRate: 35, baseHours: 2 },
        { value: "deep", label: "Deep", hourlyRate: 45, baseHours: 3.5 },
      ]}
      frequencies={[
        { value: "onetime", label: "One-time", discountPercent: 0 },
        { value: "weekly", label: "Weekly", discountPercent: 20 },
      ]}
      addOns={[{ value: "oven", label: "Inside the oven", price: 25 }]}
      labels={{ serviceLabel: "Service type", bookButton: "Book cleaning" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Optional eyebrow badge above the heading
headingstringSection heading, supports inline <strong>
descriptionstringSupporting paragraph under the heading
currencystring"$"Symbol prefixed to every price and total
serviceTiersServiceTier[][]Tabs that drive hourly rate and base hours
frequenciesFrequencyOption[][]Recurring-frequency pill options with discounts
addOnsAddOnOption[][]Optional checkbox extras added to the subtotal
maxBedroomsnumber6Upper bound of the bedroom Select (1..max)
maxBathroomsnumber5Upper bound of the bathroom Select (1..max)
labelsBooking16Labels{}All static field labels, suffixes, and button text
classNamestringExtra classes for the outer <section>
ts
type ServiceTier = {
  value: string;
  label: string;
  hourlyRate: number;
  baseHours: number;
};

type FrequencyOption = {
  value: string;
  label: string;
  discountPercent: number;
};

type AddOnOption = {
  value: string;
  label: string;
  price: number;
};

type Booking16Labels = {
  serviceLabel?: string;
  roomsLabel?: string;
  bedroomsLabel?: string;
  bathroomsLabel?: string;
  frequencyLabel?: string;
  addOnsLabel?: string;
  dateLabel?: string;
  datePlaceholder?: string;
  durationLabel?: string;
  baseLabel?: string;
  frequencyDiscountLabel?: string;
  totalLabel?: string;
  bookButton?: string;
  bedroomSuffix?: string;
  bathroomSuffix?: 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
FREE

booking4

Service Selector

Service selection grid with category filter tabs, service cards showing icon, name, description, duration, price, and selected state. Ideal for spa, salon, clinic, and fitness booking flows.

PRO

booking20

Car Rental Booking

Vehicle rental flow with pickup and return location fields, date range picker, car class grid (compact/suv/luxury) with image and specs, insurance tier selector, optional add-ons, and live price breakdown.

PRO

booking3

Appointment List

Upcoming and past appointments list grouped by date, with service name, provider avatar, time, duration, status badges (confirmed/pending/cancelled), and reschedule/cancel action buttons.

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

booking7

Hotel Room Booking

Hotel room selection with room type cards showing images, amenity icons, guest capacity, price per night, check-in/check-out date picker, guest counter, and total price summary.

PRO

booking19

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.