mirror of
https://github.com/SamyRai/turash.git
synced 2025-12-26 23:01:33 +00:00
16 lines
506 B
TypeScript
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;
|