Single-location Business

A business with a pre-selected schedule. The location step is skipped automatically — the customer goes straight to picking a service and time.

Same barbershop, but only the East Village location is returned. The location picker is skipped automatically.

React code
import { BookingWidget } from "@openings-link/react-ui";

// When a business has only one schedule, the widget
// skips the location picker and goes straight to booking.
<BookingWidget
  business="demo"
  theme={{ accent: "#059669" }}
  on={{
    onBookingComplete: (result) => {
      console.log("Booked!", result);
    },
  }}
/>