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.
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.
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
npx shadcn add "https://ui.beste.co/r/booking25?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Accent eyebrow, rendered through Badge23 with tone="primary" |
heading | string | – | Confirmation heading |
description | string | – | Supporting paragraph, capped at max-w-xl |
details | Detail[] | [] | Appointment facts in a two-column definition list |
bringTitle | string | – | Heading above the checked list |
bring | string[] | [] | What the member should bring |
media | ReactNode | – | Live asset on the sticky tile, browser35 in the demo |
image | { src: string; alt: string } | – | Backdrop behind the media tile |
changeTitle | string | – | Heading in the soft panel under the tile |
changeBody | string | – | Paragraph explaining how to change the booking |
buttons | ActionLink[] | [] | Actions, first solid and the rest outlined |
className | string | – | Extra classes for the outer section |
type ActionLink = {
label: string;
href: string;
};
type Detail = {
label: string;
value: string;
};Badge23's tone="primary". Everything else stays in the neutral palette, which is what keeps a success state from shouting.dl in a two-column grid from sm, filling column by column, so an odd number of details leaves the gap at the end rather than mid-table.border-t with no closing rule, so they read as continuing rather than as closed tables.lg:sticky lg:top-24 lg:self-start. The self-start is required, otherwise the column stretches to the row height and has nothing to travel within. Adjust top-24 to match your own fixed header.primary, later ones are outline.booking15
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.
booking2
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.
booking24
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.
booking13
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.