Skip to main content
Clever Ops

Event Schedule Tracks

A multi-track agenda, mono time rail against parallel track columns that collapse into one accessible chronological list on mobile. Conference wayfinding, poster confidence.

Preview & code

Loading Event Schedule Tracks preview

Installation

pnpm dlx shadcn@latest add @cleverui/event-schedule-tracks

Requires the @cleverui registry in your components.json, a one-off, two-line setup.

Usage

tsx
import { EventScheduleTracks } from '@/components/blocks/event-schedule-tracks'
Exampletsx
import { EventScheduleTracks } from '@/components/blocks/event-schedule-tracks'

export default function EventScheduleTracksDemo() {
  return (
    <div className="mx-auto w-full">
      <EventScheduleTracks
        heading="Schedule"
        dateLabel="Saturday 26 July"
        tracks={['Main Stage', 'Workshop Room', 'Studio C']}
        slots={[
          {
            time: '09:00',
            sessions: [
              {
                title: 'Doors & badge pickup',
                speaker: 'Front of house',
                tag: 'Arrival',
              },
              null,
              null,
            ],
          },
          {
            time: '10:00',
            sessions: [
              {
                title: 'Opening keynote: The bill is the brand',
                speaker: 'Maya Chen, Festival Director',
                tag: 'Keynote',
              },
              {
                title: 'Stage plot clinic',
                speaker: 'Ravi Okonkwo',
              },
              {
                title: 'Volunteer briefing',
                speaker: 'Ops desk',
              },
            ],
          },
          {
            time: '11:30',
            sessions: [
              {
                title: 'Lineup programming roundtable',
                speaker: 'Panel · 4 bookers',
              },
              {
                title: 'Soundcheck without the chaos',
                speaker: 'Elena Voss',
              },
              {
                title: 'Merch logistics lab',
                speaker: 'Tomás Rivera',
              },
            ],
          },
          {
            time: '13:00',
            sessions: [
              {
                title: 'Lunch break',
                speaker: 'Courtyard catering',
              },
              null,
              null,
            ],
          },
          {
            time: '14:15',
            sessions: [
              {
                title: 'Accessibility as production design',
                speaker: 'Jordan Hale',
              },
              {
                title: 'Hands-on: RF coordination',
                speaker: 'Priya Nair',
                tag: 'Workshop',
              },
              {
                title: 'Poster & print production',
                speaker: 'Studio C crew',
              },
            ],
          },
          {
            time: '16:00',
            sessions: [
              {
                title: 'Closing notes & afterparty map',
                speaker: 'Maya Chen',
                tag: 'Keynote',
              },
              {
                title: 'Office hours with bookers',
                speaker: 'By appointment',
              },
              null,
            ],
          },
        ]}
      />
    </div>
  )
}

API reference

EventScheduleTracks accepts the following props.

PropTypeDefaultDescription
headingstring'Schedule'
dateLabelstringpreformatted date line, e.g. 'Saturday 26 July'
tracks*string[]
slots*ScheduleSlot[]

…plus everything from React.HTMLAttributes<HTMLElement>: className, event handlers, aria attributes and the rest pass straight through.

Referenced types

Typestsx
export interface ScheduleSlot {
  /** preformatted, e.g. '10:30' */
  time: string
  /** aligned by index with tracks; null leaves that track empty */
  sessions: (ScheduleSession | null)[]
}

export interface ScheduleSession {
  title: string
  speaker?: string
  /** marks keynotes etc., mono micro-label + primary keyline */
  tag?: string
}

Frequently asked questions

How do I install the Event Schedule Tracks component?

Register the @cleverui registry in your components.json ("@cleverui": "https://cleverops.com.au/r/{name}.json"), then run `npx shadcn@latest add @cleverui/event-schedule-tracks`. The shadcn CLI copies the source into your project, you own the code from that point. You can also copy the source directly from this page.

What dependencies does Event Schedule Tracks require?

Event Schedule Tracks uses motion on top of React and Tailwind CSS. You don't need to install it manually, the shadcn CLI resolves and installs npm dependencies automatically when you add the component.

Can I theme Event Schedule Tracks to match my brand?

Yes. The component is styled entirely with Tailwind utilities over standard design tokens (primary, background, muted, border), so it inherits your existing shadcn/ui theme automatically. Change your CSS variables and the component follows, no source edits needed for palette, radius, or fonts.

Want this built for you?

CleverUI is built by the Clever Ops web team. If you'd rather ship a hand-coded, fast, custom website than assemble one, we build them for Australian businesses every week.

Explore web development services