import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" import { Badge } from "@/components/ui/badge" import { Coins, Vote, Cpu, Heart } from "lucide-react" export function AlternativesSection() { const alternatives = [ { icon: , title: "Permaculture Currencies", description: "Local exchange systems that value ecological regeneration, care work, and community resilience over profit extraction.", examples: ["Community Land Trusts", "Time Banking", "Mutual Credit Systems", "Gift Economies"], }, { icon: , title: "Participatory Democracy", description: "Decision-making systems that give communities direct control over resources and policies affecting their lives.", examples: ["Consensus Building", "Sociocracy", "Liquid Democracy", "Community Assemblies"], }, { icon: , title: "Cooperative Technology", description: "Platform cooperatives and decentralized technologies that serve communities rather than extractive corporations.", examples: ["Platform Co-ops", "Mesh Networks", "Open Source Tools", "Distributed Governance"], }, { icon: , title: "Care-Centered Economics", description: "Economic models that prioritize care work, emotional labor, and the reproduction of life over capital accumulation.", examples: ["Universal Basic Services", "Care Income", "Commons Management", "Solidarity Economy"], }, ] return (

{"Post-Capitalist "} Alternatives

{"These aren't utopian dreams — they're practical alternatives being implemented "} {'by communities worldwide who refuse to accept that "there is no alternative."'}

{alternatives.map((alternative, index) => (
{alternative.icon} {alternative.title}

{alternative.description}

{alternative.examples.map((example, exampleIndex) => ( {example} ))}
))}
{'"We are in urgent need of new economic models that can facilitate managed degrowth '} {'and support localized production in the real economy."'}
— From Mycoeconomics and Permaculture Currencies
) }