/* ═══════════════════════════════════════════════════════════════ RETREATS BAND The National Retreats carousel from the Retreats page, as-is: same component, same filter, so an event edited in the admin shows up identically in both places. This file only adds the front page's heading and a way through to the full page. ═══════════════════════════════════════════════════════════════ */ import { Link } from 'react-router-dom' import EventListCards from '../EventList-Cards.tsx' const TEAL = '#138ba0' type RetreatsBandProps = { id: string; title: string; blurb?: string | null } export default function RetreatsBand({ id, title, blurb }: RetreatsBandProps) { return (

{title}

{blurb &&

{blurb}

}
All retreats →
) }