# Beste UI

> Beautiful, accessible blocks, pieces and components for shadcn/ui and Tailwind CSS, built for React and Next.js. Install one with the shadcn CLI and the code is yours to edit: no runtime dependency, nothing to upgrade.

Markdown rendition of https://ui.beste.co/block/event98. Every page on the site has one: add `.md` to any address, or send `Accept: text/markdown`.

Last updated: 2026-08-03

Whole catalog for LLMs: https://ui.beste.co/llms.txt. Registry index: https://ui.beste.co/r/registry.json

---
1. /
2. [Blocks](/blocks)
3. /
4. [Event](/blocks/event)
5. /
6. Multi-City Tour Dates

# Multi-City Tour Dates[PRO](/pricing)

A tour schedule listing each city as a linked hairline row with its venue, date, and remaining seats, muting the sold-out stops, beside a sticky tile that floats a live locations card.

ViewCodeDocs

Base UI

![](https://oud.pics/sm/l/npm.svg)`npx shadcn add https://ui.beste.co/r-base/event98`

## Event98: Multi-City Tour Dates

A tour schedule listing each city as a linked hairline row with its venue, date and remaining seats, muting the sold-out stops, beside a sticky tile that floats a live locations card.

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 NowUpgrade Now](/pricing)

### Installation

Swap `YOUR_EMAIL` and `YOUR_KEY` for the email and license key on your account. Find your license key on your [account page](/account).

**Radix flavor**

bashCopy

```
npx shadcn add "https://ui.beste.co/r/event98?email=YOUR_EMAIL&license_key=YOUR_KEY"
```

**Base UI flavor**

bashCopy

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

This installs the block to `components/beste/block/event98.tsx`, the `location8` coverage piece it floats on the tile (installed to `components/beste/piece/location8.tsx`), and the `badge23` and `button21` components it uses for the eyebrow and the action.

### Quick start

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

tsxCopy

```
import { Event98, event98Demo } from "@/components/beste/block/event98";

export default function TourPage() {
  return <Event98 {...event98Demo} />;
}
```

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

tsxCopy

```
import { Event98 } from "@/components/beste/block/event98";
import { Location8 } from "@/components/beste/piece/location8";

export default function TourPage() {
  return (
    <Event98
      badge={{ label: "On the road" }}
      heading="Six evenings, six cities, and the same forty chairs"
      description="We bring the roundtable to you. Free, and dinner is included."
      stops={[
        {
          city: "Bristol",
          venue: "The Old Print Works",
          date: "18 June",
          day: "Thursday",
          seats: "12 of 40 left",
          href: "/tour/bristol",
        },
        {
          city: "Leeds",
          venue: "Duke Studios",
          date: "25 June",
          day: "Thursday",
          seats: "Sold out",
          soldOut: true,
          href: "/tour/leeds",
        },
      ]}
      soldOutLabel="Join the waiting list"
      media={
        <Location8
          title="Where we are heading"
          region="Summer 2026"
          sites={[{ name: "Bristol", meta: "18 June", value: "12 left" }]}
          total="6"
          totalLabel="cities, 240 seats in total"
        />
      }
      image={{ src: "/backdrops/green.jpg", alt: "Deep green gradient backdrop" }}
      mediaCaption="If your city is not on the list, tell us and we will add one."
      button={{ label: "Suggest a city", href: "/tour/suggest" }}
    />
  );
}
```

### Props

| Prop         | Type                            | Default | Description                                               |
| ------------ | ------------------------------- | ------- | --------------------------------------------------------- |
| badge        | { label: string }               | –       | Eyebrow above the hairline rule, rendered through Badge23 |
| heading      | string                          | –       | Section heading in the left column of the header          |
| description  | string                          | –       | Supporting paragraph, right-aligned from md up            |
| stops        | Stop\[\]                        | \[\]    | Tour dates, in the order they should read                 |
| soldOutLabel | string                          | –       | Call to action shown on sold-out rows                     |
| media        | ReactNode                       | –       | Live asset on the sticky tile, location8 in the demo      |
| image        | { src: string; alt: string }    | –       | Backdrop behind the media tile                            |
| mediaCaption | string                          | –       | Caption under the tile                                    |
| button       | { label: string; href: string } | –       | Outline action under the caption                          |
| className    | string                          | –       | Extra classes for the outer section                       |

tsCopy

```
type ActionLink = {
  label: string;
  href: string;
};

type Stop = {
  city: string;
  venue: string;
  date: string;
  day: string;
  seats: string;
  soldOut?: boolean;
  href: string;
};
```

### Behavior notes

* `soldOut` mutes the seat count and swaps the call to action to `soldOutLabel`. The row stays a link either way, since a sold-out stop still needs somewhere to send people.
* The fallback call to action for available stops, "Reserve a seat", is hard-coded in the block rather than being a prop. Only the sold-out variant is configurable.
* `seats` is free text, so it carries either a count or the words "Sold out". Nothing is parsed, and the `soldOut` flag is what actually drives the styling.
* Rows are whole `Link` elements in a three-track grid from `md`: city and venue, date and day, then seats right-aligned. Below `md` they stack in that order.
* Rows carry `md:px-4` alongside the hover fill, so the highlight extends slightly past the text on wider screens.
* The tile column is `lg:sticky lg:top-24 lg:self-start`. The `self-start` is required, otherwise the column stretches to the row height and sticky has nothing to travel within.
* The layout is a `1.7fr` to `1fr` split, giving the schedule most of the width, which is what lets each stop keep three columns of its own.

## More Event blocks

[View all Event](/blocks/event)

[](/block/event102)

PRO

event102

### Open Hours Session Rows

Upcoming sessions as hairline rows, each opening with the date set as a figure, then the session and what it covers, with its seat state and a booking link on the end.

[](/block/event14)

PRO

event14

### Speaker Sessions Schedule

Speaker cards displaying multiple sessions per presenter with times, locations, and session types. Perfect for multi-track conferences with recurring speakers.

[](/block/event94)

PRO

event94

### Featured Session Schedule

An events section that opens with a split featured card pairing a photo with date, time, and format lines, then lists the rest of the schedule as rows separated by hairlines, each with a bordered date tile, host meta, seat count, and register action.

[](/block/event95)

PRO

event95

### Filterable Day Agenda

A conference agenda whose track pills are derived from the sessions and carry live counts, narrowing a timed list of hairline rows that align the slot, the session, and its speaker and room.

[](/block/event27)

PRO

event27

### Breaks and Networking Schedule

Schedule cards for coffee breaks, lunch, and social events with timing, locations, and activity highlights. Perfect for showing networking opportunities.

[](/block/event97)

PRO

event97

### Recorded Sessions Archive

A past events archive leading with an image tile that floats a recording card, then listing every earlier session as linked hairline rows with its date, place, and running time.

## Ship the interface, keep the code.

New blocks, pieces and components every week. Install one with a command and it is yours to edit. No runtime dependency, no upgrade path to fight.

[Browse the libraryBrowse the library](/blocks)[See pricingSee pricing](/pricing)

### Library

* [Blocks](/blocks)
* [Pages](/pages)
* [Pieces](/pieces)
* [Components](/components)
* [Search](/search)

### Learn

* [Docs](/docs)
* [AI & MCP](/docs/mcp)
* [Blog](/blog)
* [Free tools](/tools)
* [What's new?](/changelog)
* [Website Builder](https://beste.co)

### More

* [Pricing](/pricing)
* [Referrals](/referrals)
* [License](/license)
* [GitHub](https://github.com/beste-co/beste-ui)

### Shadcn Blocks

* [Shadcn Hero Blocks](/blocks/hero)
* [Shadcn Feature Blocks](/blocks/feature)
* [Shadcn Pricing Blocks](/blocks/pricing)
* [Shadcn CTA Blocks](/blocks/cta)
* [Shadcn FAQ Blocks](/blocks/faq)
* [Shadcn About Blocks](/blocks/about)
* [Shadcn Stats Blocks](/blocks/stats)
* [Shadcn Footer Blocks](/blocks/footer)
* [Shadcn Navigation Blocks](/blocks/navigation)
* [Shadcn Auth Blocks](/blocks/auth)
* [Shadcn Ecommerce Blocks](/blocks/ecommerce)
* [Shadcn Portfolio Blocks](/blocks/portfolio)
* [Shadcn Showcase Blocks](/blocks/showcase)
* [Shadcn Careers Blocks](/blocks/careers)
* [Shadcn Onboarding Blocks](/blocks/onboarding)
* [Shadcn Coming Soon Blocks](/blocks/coming-soon)
* [Shadcn Post Blocks](/blocks/post)
* [Shadcn Legal Blocks](/blocks/legal)
* [Shadcn Workflow Blocks](/blocks/workflow)
* [Shadcn News Blocks](/blocks/news)

© 2026, [Beste](https://beste.co). All rights reserved.