Tours and experiences booking card with hero image overlay, rating, duration, difficulty badge, date picker, traveler counter, language selector, highlights list, and reserve CTA. Perfect for guided tours, classes, and local experiences.
A single-column experience booking card rendering a hero image with a dark overlay, floating rating badge, and title/location caption, a three-column duration/difficulty/group-size info strip, a horizontally scrollable 14-day date picker that greys out unavailable slots, traveler-count and language Select dropdowns, an optional highlights checklist, and a sticky footer that totals price per person against the traveler count and gates a reserve button on date selection.
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/booking14?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/booking14?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/booking14.tsx, plus the badge, button, and select shadcn/ui primitives it uses for the rating/eyebrow badges, the reserve button, and the traveler and language dropdowns.
The installed file exports booking14Demo alongside the block: the exact props behind the preview above. Spread it to get a working experience booking card in one line.
import { Booking14, booking14Demo } from "@/components/beste/block/booking14";
export default function ExperiencePage() {
return <Booking14 {...booking14Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Booking14 } from "@/components/beste/block/booking14";
export default function ExperiencePage() {
return (
<Booking14
badge={{ label: "Experiences", variant: "secondary" }}
heading="Book your <strong>next adventure</strong>"
experienceTitle="Sunrise Hot Air Balloon Ride"
experienceLocation="Cappadocia, Türkiye"
experienceImage="/experiences/balloon.jpg"
rating={4.9}
reviewCount={1847}
duration="3 hours"
difficulty="Easy"
groupSize="Up to 20"
currency="$"
pricePerPerson={189}
languages={["English", "Spanish", "French"]}
highlights={["Professional pilot", "Panoramic views", "Hotel pickup"]}
unavailableDates={["2026-07-15", "2026-07-18"]}
labels={{ pickDateLabel: "Pick a date", reserveButton: "Reserve experience" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Optional eyebrow badge above the heading |
heading | string | – | Section heading, supports inline <strong> |
description | string | – | Lead paragraph under the heading |
experienceTitle | string | – | Title shown over the hero image and used as the image alt |
experienceLocation | string | – | Location line with pin icon over the hero |
experienceImage | string | – | Hero image URL; the whole hero block is omitted when absent |
rating | number | – | Numeric rating in the floating hero badge |
reviewCount | number | – | Parenthetical review count next to the rating |
duration | string | – | First info pill value (clock icon) |
difficulty | string | – | Second info pill value (mountain icon) |
groupSize | string | – | Third info pill value (users icon) |
currency | string | "$" | Currency symbol prefixed to prices |
pricePerPerson | number | 0 | Per-person price, multiplied by traveler count for the total |
languages | string[] | [] | Options for the language Select |
highlights | string[] | [] | Checklist items; section hidden when empty |
unavailableDates | string[] | [] | ISO date keys ("2026-07-15") that disable matching date buttons |
labels | Booking14Labels | {} | All static UI strings (see type below) |
className | string | – | Extra classes for the outer <section> |
type Booking14Labels = {
todayLabel?: string;
durationLabel?: string;
difficultyLabel?: string;
groupSizeLabel?: string;
pickDateLabel?: string;
travelersLabel?: string;
languageLabel?: string;
highlightsLabel?: string;
perPersonLabel?: string;
totalLabel?: string;
reserveButton?: string;
travelerSingular?: string;
travelerPlural?: string;
};new Date(): it always shows the next 14 days starting today, so dates are relative to when the component mounts, not fixed props. A date is disabled only when its computed YYYY-MM-DD key appears in unavailableDates.selectedDateIndex, travelers, language) lives entirely in internal useState and is never surfaced through a callback, so the parent cannot read or control the current selection; travelers defaults to 2 and language initializes to languages[0].1 through 20 regardless of the groupSize string, which is display-only text and does not cap the counter.handleReserve only calls console.log(...) with the reservation payload, so wiring the actual booking submission is left to the integrator.heading is rendered via dangerouslySetInnerHTML, letting inline <strong> tags render as bold primary-colored text; pass only trusted markup.travelers × language line) is conditionally rendered and appears only once a date is selected; the total (pricePerPerson * travelers) updates live with the dropdown.badge, heading, description) is skipped entirely when none of those three props are provided.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.
booking12
Airbnb/Booking.com-style search bar with location autocomplete, date range picker, guest counter dropdown, and search CTA. Responsive — inline on desktop, stacked on mobile. The universal booking hero section.
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.
booking5
Staff/provider selection cards with avatar, name, specialty, star rating, review count, availability badge, experience years, and selected state. Grid layout with "Any Provider" option.
booking7
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.
booking17
Ride-share style booking with pickup/dropoff address inputs, schedule now/later toggle, ride class selector (economy/comfort/xl) with ETA and fare, payment method row, and confirm ride CTA. Perfect for taxi, transfer, and shuttle apps.
booking9
Event ticket selection with event banner, date/venue info, ticket tier cards (General/VIP/Backstage) with perks list, quantity selector, and order total. Concert and conference ticket flow.