import { Card } from "@/components/ui/card" import { Brain, Network, Sprout, Users } from "lucide-react" const concepts = [ { icon: Brain, title: "Psilo-Cybernetics", description: "The study of feedback loops and self-organizing systems inspired by mycelial networks and psychedelic insights into interconnectedness.", }, { icon: Sprout, title: "Institutional Neuroplasticity", description: "Organizations that adapt and evolve like neural networks, continuously learning and reorganizing based on environmental feedback.", }, { icon: Network, title: "MycoFi Framework", description: "A decentralized infrastructure connecting economic, democratic, and computational systems through myco-principic design patterns.", }, { icon: Users, title: "Community Collaboration", description: "Real-time tooling for collective decision-making, resource allocation, and knowledge sharing across distributed networks.", }, ] export function ConceptsGrid() { return (

{"Core Concepts"}

{"Understanding the foundational principles that enable adaptive, interconnected systems"}

{concepts.map((concept, index) => { const Icon = concept.icon return (

{concept.title}

{concept.description}

) })}
) }