'use client'; import '../i18n'; import { useTranslation } from 'react-i18next'; export default function Contact() { const { t } = useTranslation(); return (

{t('contact_title')}

If you have any questions, feedback, or suggestions regarding the COLLE benchmark, feel free to reach out to us. We are happy to help — please note that response times may vary.

{t('contact_email_label')}

david.beauchemin@ift.ulaval.ca
); }