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

16 lines
506 B
TypeScript

const CommunityStoriesPage = () => {
return (
<div className="container mx-auto px-4 py-8">
<h1 className="text-3xl font-bold mb-6">Community Stories</h1>
<div className="bg-muted p-8 rounded-lg text-center">
<p className="text-lg text-muted-foreground">
Success stories and case studies coming soon! Read about successful resource connections
and sustainability achievements.
</p>
</div>
</div>
);
};
export default CommunityStoriesPage;