import { Card } from "@/components/ui/card" import { GitBranch, Layers, Zap, RefreshCw, Share2, Target } from "lucide-react" const principles = [ { icon: GitBranch, title: "Distributed Architecture", description: "No single point of failure—resilience through decentralization", }, { icon: Layers, title: "Emergent Complexity", description: "Simple rules create sophisticated collective behaviors", }, { icon: Zap, title: "Real-Time Adaptation", description: "Continuous feedback loops enable rapid organizational learning", }, { icon: RefreshCw, title: "Regenerative Systems", description: "Self-healing networks that grow stronger through use", }, { icon: Share2, title: "Resource Sharing", description: "Efficient allocation through transparent, collaborative protocols", }, { icon: Target, title: "Intentional Design", description: "Purpose-driven architecture aligned with community values", }, ] export function Principles() { return (

{"Myco-Principic Design"}

{"Six foundational principles inspired by mycelial networks and applied to institutional design"}

{principles.map((principle, index) => { const Icon = principle.icon const hue = 180 + index * 30 // Cycle through cyan to magenta return (

{principle.title}

{principle.description}

) })}
) }