import { useTranslation } from '@/hooks/useI18n'; const CommunityEventsPage = () => { const { t } = useTranslation(); return (

{t('community.events.title')}

{t('community.events.description')}

); }; export default CommunityEventsPage;