mirror of
https://github.com/SamyRai/turash.git
synced 2025-12-26 23:01:33 +00:00
16 lines
498 B
TypeScript
16 lines
498 B
TypeScript
const CommunityImpactPage = () => {
|
|
return (
|
|
<div className="container mx-auto px-4 py-8">
|
|
<h1 className="text-3xl font-bold mb-6">Community Impact Dashboard</h1>
|
|
<div className="bg-muted p-8 rounded-lg text-center">
|
|
<p className="text-lg text-muted-foreground">
|
|
Community impact dashboard coming soon! Track environmental and economic benefits of
|
|
industrial symbiosis.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default CommunityImpactPage;
|