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

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

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

); }; export default CommunityNewsPage;