{ui('noEventsThisMonth', language)}
) : (
{filtered.map((event) => {
const img = eventImage(event)
return (
)
})}
)}
'use client' import { useEffect, useState } from 'react' import Image from 'next/image' import dynamic from 'next/dynamic' import { useBack } from '@/hooks/useBack' import { useVisitor } from '@/context/VisitorContext' import { t, tPlain, ui } from '@/lib/i18n' import type { SectionDTO, EventAgendaDTO } from '@/lib/api/types' import AppBar from '@/components/ui/AppBar' import { trackEvent } from '@/lib/stats' import { getAgendaEvents } from '@/lib/api/client' const EventMiniMap = dynamic(() => import('./agenda/EventMiniMap'), { ssr: false, loading: () => (
{ui('noEventsThisMonth', language)}
) : (