# 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/event95. 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. Filterable Day Agenda

# Filterable Day Agenda[PRO](/pricing)

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.

ViewCodeDocs

Base UI

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

## 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.

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

**Base UI flavor**

bashCopy

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

This installs the block to `components/beste/block/event95.tsx` plus the `badge23` and `button21` components it uses for the eyebrow and the registration action.

### Quick start

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

tsxCopy

```
import { Event95, event95Demo } from "@/components/beste/block/event95";

export default function AgendaPage() {
  return <Event95 {...event95Demo} />;
}
```

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

tsxCopy

```
import { Event95 } from "@/components/beste/block/event95";

export default function AgendaPage() {
  return (
    <Event95
      badge={{ label: "The agenda" }}
      heading="One day, three tracks, and nothing that is really a sales pitch"
      description="Pick a track to narrow the day."
      dayLabel="Thursday 18 June, Bristol"
      allLabel="Whole day"
      sessions={[
        {
          time: "09:00",
          duration: "30 min",
          track: "Operations",
          title: "The morning huddle, rebuilt",
          description: "What four practices changed about the first fifteen minutes of the day.",
          speaker: "Elena Rourke, Bramble Health",
          room: "Main room",
          href: "/agenda/huddle",
        },
        {
          time: "11:00",
          duration: "60 min",
          track: "Clinical",
          title: "Notes people will actually read",
          description: "Template design from a clinician's side.",
          speaker: "Dr Amelia Frost",
          room: "Main room",
          href: "/agenda/notes",
        },
      ]}
      button={{ label: "Register for the day", href: "/register" }}
    />
  );
}
```

### 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            |
| dayLabel    | string                          | –       | Date and place line under the paragraph                   |
| allLabel    | string                          | "All"   | Label for the unfiltered pill                             |
| sessions    | Session\[\]                     | \[\]    | The agenda, in the order it should read                   |
| button      | { label: string; href: string } | –       | Registration action under the list                        |
| className   | string                          | –       | Extra classes for the outer section                       |

tsCopy

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

type Session = {
  time: string;
  duration: string;
  track: string;
  title: string;
  description: string;
  speaker: string;
  room: string;
  href: string;
};
```

### Behavior notes

* Tracks are derived, not configured. They come from `Array.from(new Set(sessions.map(session => session.track)))`, so adding a session with a new `track` adds a pill automatically, in first-appearance order. Counts are computed the same way.
* Sessions are never sorted by the block, so pass them in chronological order. Filtering preserves that order, which is what keeps a filtered track readable as a day.
* The track name repeats inside each row as well as on the pills, which is deliberate: with a filter applied it confirms what you are looking at, and unfiltered it labels each row.
* Rows are whole `Link` elements laid out as a three-track grid from `md`: time, session, then speaker and room right-aligned. Below `md` they stack in that same order.
* Times use `tabular-nums`, so the left column stays aligned across the day.
* Rows carry `md:px-4` alongside the hover fill, so the highlight extends slightly past the text on wider screens.
* The registration action sits under its own `border-t`, which closes the agenda list rather than leaving it open.
* Filter pills are real `button` elements with `aria-pressed` and explicit `cursor-pointer`, since Tailwind v4 buttons default to `cursor: default`.

## 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/event98)

PRO

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.

[](/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/event29)

PRO

event29

### Personal Schedule Builder

Interactive session picker with add/remove toggles, personal schedule summary, and calendar export. Perfect for multi-track conferences where attendees build agendas.

[](/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/event96)

PRO

event96

### Event Detail With Countdown

A single event page opening on a full-bleed photo band with a live countdown anchored into it, then pairing the pitch and two actions with a hairline table of practical facts and a speaker list.

## 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.