mirror of
https://github.com/SamyRai/turash.git
synced 2025-12-26 23:01:33 +00:00
16 lines
509 B
TypeScript
16 lines
509 B
TypeScript
const CommunityEventsPage = () => {
|
|
return (
|
|
<div className="container mx-auto px-4 py-8">
|
|
<h1 className="text-3xl font-bold mb-6">Community Events</h1>
|
|
<div className="bg-muted p-8 rounded-lg text-center">
|
|
<p className="text-lg text-muted-foreground">
|
|
Community events calendar coming soon! Find sustainability workshops, networking events,
|
|
and environmental awareness campaigns.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default CommunityEventsPage;
|