"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. Mycelial currencies route value like fungi route nutrients — sensing scarcity, bridging gaps, feeding the weak to strengthen the whole. This is the economics of the forest floor.", icon: ( ), }, { title: "Mutual Aid", body: "Every node strengthens the network. Every network strengthens each node. In a mycelial system, there are no freeloaders and no extractors — only participants in a web of reciprocal support. This is the peer-for-peer protocol.", icon: ( ), }, { title: "Distributed Intelligence", body: "No central brain. No single point of failure. Intelligence emerges from connection, from the ten thousand chemical conversations happening simultaneously across the network. The wisdom is in the web, not the node.", 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 .

) }