Home Cleaning Service Booking

Home services

Book a cleaning

Vetted cleaners, flexible scheduling, and a 100% satisfaction guarantee. Book in under a minute.

Service type
Home size
Frequency
Add-ons
Date
Estimated duration~3.3h
Base (Standard)$114
Total$113.75
About this block

Home Cleaning Service BookingPRO

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.

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.

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/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

  • Pricing is derived, not passed in: roomHours = baseHours + bedrooms * 0.5 + bathrooms * 0.25, basePrice = roomHours * hourlyRate, then add-on prices are summed, a frequency.discountPercent is applied, and everything is Math.round-ed for display, so all money moves the moment any control changes.
  • Every input is internal useState (tier, bedrooms, bathrooms, frequency, selectedAddOns, date) with no onChange props exposed; the initial tier and frequency default to serviceTiers[0]?.value and frequencies[0]?.value, and bedrooms/bathrooms start at 2/1.
  • The block has no submit callback prop: handleBook returns early unless both a date and an active tier exist, and otherwise only calls console.log(...), so wiring a real booking request is left to the integrator.
  • The book Button is disabled whenever date is unset or no activeTier is found, and the calendar itself disables any day before today via disabled={(d) => d < todayStart} (midnight-normalized).
  • Selected add-ons are tracked in a Set<string> keyed by addon.value, and the whole add-ons block is conditionally rendered only when addOns.length > 0.
  • Bedroom and bathroom options are generated as 1..maxBedrooms and 1..maxBathrooms, and frequency pills only show the green discount badge when discountPercent > 0; the recurring-discount summary row only appears when the computed discountAmount > 0.
  • heading is rendered through dangerouslySetInnerHTML, so inline <strong> is bolded and tinted text-primary; the summary footer stays visible below the fields and duration is shown rounded to one decimal as ~{durationHours}h.

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

booking26

Minimal Service Picker

A quiet booking picker whose left column lists each service as a single hairline row carrying only its length and price, swapping a sticky panel that floats a live week strip above the chosen service's detail and its book action.

PRO

booking24

Service And Slot Picker

An interactive appointment picker: a hairline panel pairing a selectable service list with a scrollable day strip and a time slot grid that marks unavailable times, beside a full-height provider photo with a gradient name card, closing on a live summary bar and confirm action.

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.