Booking ConfirmedPRO

A confirmation screen with an accent eyebrow, a two-column hairline table of the appointment details, a checked list of what to bring, and a sticky tile floating the live phone view the member also receives.

Booking25: Booking Confirmed

A confirmation screen with an accent eyebrow, a two-column hairline table of the appointment details, a checked list of what to bring and a sticky tile floating the live phone view the member also receives.

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

Base UI flavor

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

This installs the block to components/beste/block/booking25.tsx, the browser35 phone-frame piece it floats on the tile (installed to components/beste/piece/browser35.tsx), and the badge23 and button21 components it uses for the eyebrow and the actions.

Quick start

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

tsx
import { Booking25, booking25Demo } from "@/components/beste/block/booking25";

export default function ConfirmedPage() {
  return <Booking25 {...booking25Demo} />;
}

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

tsx
import { Booking25 } from "@/components/beste/block/booking25";
import { Browser35 } from "@/components/beste/piece/browser35";

export default function ConfirmedPage() {
  return (
    <Booking25
      badge={{ label: "Confirmed" }}
      heading="You are booked in for Wednesday at nine"
      description="A confirmation is on its way to your email and phone."
      details={[
        { label: "When", value: "Wednesday 14 May, 09:00" },
        { label: "With", value: "Dr Amelia Frost" },
        { label: "Reference", value: "SIR-4821" },
      ]}
      bringTitle="Worth bringing"
      bring={["Your referral letter, if you have a paper copy", "A list of anything you take"]}
      media={
        <Browser35
          time="09:41"
          title="Appointment"
          status="Confirmed"
          headline="Wednesday, 14 May · 09:00"
          rows={[{ label: "With", value: "Dr Amelia Frost" }]}
        />
      }
      image={{ src: "/backdrops/blue.jpg", alt: "Soft blue gradient backdrop" }}
      changeTitle="Need to change it?"
      changeBody="Move or cancel from the same link, at any hour, without ringing anyone."
      buttons={[
        { label: "Add to calendar", href: "/calendar.ics" },
        { label: "Move this appointment", href: "/booking/move" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Accent eyebrow, rendered through Badge23 with tone="primary"
headingstringConfirmation heading
descriptionstringSupporting paragraph, capped at max-w-xl
detailsDetail[][]Appointment facts in a two-column definition list
bringTitlestringHeading above the checked list
bringstring[][]What the member should bring
mediaReactNodeLive asset on the sticky tile, browser35 in the demo
image{ src: string; alt: string }Backdrop behind the media tile
changeTitlestringHeading in the soft panel under the tile
changeBodystringParagraph explaining how to change the booking
buttonsActionLink[][]Actions, first solid and the rest outlined
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type Detail = {
  label: string;
  value: string;
};

Behavior notes

More Booking blocks

View all Booking
FREE

booking15

Booking Confirmation Receipt

Post-booking success screen with animated check icon, confirmation number, booking summary (service, date/time, location, total), scannable QR code ticket, action buttons (calendar, receipt, directions), and email confirmation note.

PRO

booking2

Reservation Summary

Booking confirmation card with service details, date/time, provider info with avatar, price breakdown with subtotal/tax/discount/total, promo code input, cancellation policy, and confirm CTA.

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

booking13

Live Social Proof Bar

Booking.com-style social proof ticker with rotating messages: live viewers, recent bookings, scarcity alerts, and location-based activity. Animated transitions, urgency indicators, and trust signals that boost conversion.

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.

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.