import { InboxIcon, TrashIcon, UsersIcon } from '@heroicons/react/24/outline' import { H2, P } from '@/components/Texts' const features = [ { name: 'Mycelium Network', description: "A global, end-to-end encrypted overlay that simply doesn't break.", href: '/network', icon: UsersIcon, image: '/images/network_icon.png', }, { name: 'Mycelium Cloud', description: 'An autonomous, stateless OS that enforces pre-deterministic deployments you define.', href: '/cloud', icon: TrashIcon, image: '/images/cloud_icon.png', }, { name: 'Mycelium Agents', description: 'Your sovereign agent with private memory and permissioned data access—always under your control.', href: '/agents', icon: InboxIcon, image: '/images/agent_icon.png', }, ] export function HomeFeatures() { return (

The Building Blocks of Decentralized Future

From compute and networking to intelligent automation, these components work together to empower users, developers, and organizations to build freely, without intermediaries.

{features.map((feature) => (

{feature.name}

{feature.description}

Learn more
))}
) }