mirror of
https://github.com/SamyRai/turash.git
synced 2025-12-26 23:01:33 +00:00
- Remove unused imports and variables from DashboardPage, HeritageBuildingPage, MatchesMapView - Fix i18n literal strings in NetworkGraph component - Continue systematic reduction of linting errors
16 lines
477 B
TypeScript
16 lines
477 B
TypeScript
import { useTranslation } from '@/hooks/useI18n';
|
|
|
|
const CommunityNewsPage = () => {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<div className="container mx-auto px-4 py-8">
|
|
<h1 className="text-3xl font-bold mb-6">{t('community.news.title')}</h1>
|
|
<div className="bg-muted p-8 rounded-lg text-center">
|
|
<p className="text-lg text-muted-foreground">{t('community.news.description')}</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default CommunityNewsPage;
|