import Link from 'next/link' const nodes = [ { name: 'alltor.net', url: 'https://alltor.net', description: 'Distributed networks' }, { name: 'post-appitalism.app', url: 'https://post-appitalism.app', description: 'Beyond extraction' }, { name: 'compostcapitalism.xyz', url: 'https://compostcapitalism.xyz', description: 'Regenerative economics' }, { name: 'mycofi.earth', url: 'https://mycofi.earth', description: 'Mycelial finance' }, { name: 'folkjs.org', url: 'https://folkjs.org', description: 'Collaborative tools' }, { name: 'rspace.online', url: 'https://rspace.online', description: 'Interaction spaces' }, ] export function NetworkSection() { return (
The Mycelial Network

Interconnected. Resilient. Growing.

Like mycelium beneath the forest floor, we're part of a larger living network. These are our kindred nodes.

{nodes.map((node) => (
{node.name}
{node.description}
))}
) }