/* ═══════════════════════════════════════════════════════════════ CALENDAR BAND EventCalendar on the front page: every scope and every type, all four visitor filters, starting on this month. The same component can go on any page with a narrower filter — a region's page would pass host, a classes page would pass type — and this file only adds the front page's heading around it. ═══════════════════════════════════════════════════════════════ */ import EventCalendar from '../EventCalendar.tsx' type CalendarBandProps = { id: string; title: string; blurb?: string | null } export default function CalendarBand({ id, title, blurb }: CalendarBandProps) { return (

{title}

{blurb &&

{blurb}

}
) }