"use client" import { useSectionReveal } from "@/hooks/use-section-reveal" const PRINCIPLES = [ { title: "Nutrient Cycling", body: "Resources flow where they're needed, not where they're hoarded. The Commons Stack pioneered augmented bonding curves and quadratic funding for the commons. MycoFi extends this into mycelial currencies that route value like fungi route nutrients — sensing scarcity, bridging gaps, feeding the weak to strengthen the whole.", icon: ( ), }, { title: "Mutual Aid", body: "Every node strengthens the network. Every network strengthens each node. The P2P Foundation called this commons-based peer production — contributory, needs-based collaboration as the third mode of production beyond state and market. In a mycelial system, there are no extractors — only participants in a web of reciprocal support.", icon: ( ), }, { title: "Distributed Intelligence", body: "No central brain. No single point of failure. The Trusted Seed proved that conviction voting and consent-based governance could coordinate without hierarchy. Intelligence emerges from connection, from the ten thousand chemical conversations happening simultaneously across the network. Design global, manufacture local — cosmo-localism in practice.", icon: ( ), }, ] export function MyceliumSection() { const sectionRef = useSectionReveal() return (

The Mycelial Network

Three principles from the forest floor, applied to human systems

{PRINCIPLES.map((principle, i) => (
{principle.icon}

{principle.title}

{principle.body}

{i < PRINCIPLES.length - 1 && (
)}
))} {/* Connecting line between principles - visual only */}

These are the protocols of{" "} mycofi.earth . The economics of interconnection, first practiced by fungi four hundred million years before capitalism. Read more about the philosophy at{" "} mycopunk.xyz .

) }