'use client'; import { useLanguage } from '@/context/LanguageContext'; import NextEventSection from './NextEventSection'; import { Event } from '@/lib/api'; interface NextEventSectionWrapperProps { initialEvent?: Event | null; } export default function NextEventSectionWrapper({ initialEvent }: NextEventSectionWrapperProps) { const { t } = useLanguage(); return (

{t('home.nextEvent.title')}

); }