import { Card } from "@/components/ui/card" import { Button } from "@/components/ui/button" import { Coins, Vote, Database, MessageSquare, ArrowRight } from "lucide-react" const applications = [ { icon: Coins, title: "Economic Collaboration", description: "Decentralized resource allocation, mutual credit systems, and transparent value flows that adapt to community needs in real-time.", features: ["Mutual Credit Networks", "Dynamic Resource Pools", "Value Flow Tracking"], }, { icon: Vote, title: "Democratic Governance", description: "Participatory decision-making tools that scale from local to global, enabling fluid consensus and adaptive policy formation.", features: ["Liquid Democracy", "Quadratic Voting", "Consent-Based Protocols"], }, { icon: Database, title: "Computational Infrastructure", description: "Distributed computing networks that grow organically, sharing processing power and data storage across community nodes.", features: ["Peer-to-Peer Computing", "Federated Data Storage", "Edge Processing"], }, { icon: MessageSquare, title: "Knowledge Commons", description: "Collaborative learning environments where insights propagate through the network, creating collective intelligence.", features: ["Distributed Knowledge Graphs", "Collaborative Sense-Making", "Emergent Documentation"], }, ] export function Applications() { return (

{"Real-Time Collaboration Tools"}

{"Practical applications of MycoFi principles for community coordination and collective action"}

{applications.map((app, index) => { const Icon = app.icon const hue = 180 + index * 40 return (

{app.title}

{app.description}

{"Key Features:"}

    {app.features.map((feature, i) => (
  • {feature}
  • ))}
) })}

{"Ready to Explore the Network?"}

{ "Dive deeper into psilo-cybernetics and discover how myco-principic design can transform your community or organization" }

) }