turash/bugulma/frontend/pages/CommunityNewsPage.tsx
2025-12-15 10:06:41 +01:00

15 lines
455 B
TypeScript

const CommunityNewsPage = () => {
return (
<div className="container mx-auto px-4 py-8">
<h1 className="text-3xl font-bold mb-6">Community News</h1>
<div className="bg-muted p-8 rounded-lg text-center">
<p className="text-lg text-muted-foreground">
Community news feature coming soon! Stay tuned for local sustainability news and updates.
</p>
</div>
</div>
);
};
export default CommunityNewsPage;