import { LockClosedIcon, GlobeAltIcon, ArrowPathRoundedSquareIcon, NoSymbolIcon, } from '@heroicons/react/24/solid' import { Container } from '@/components/Container' import { Eyebrow, H3, P, CT, CP } from '@/components/Texts' const capabilities = [ { name: 'End-to-End Encrypted Mesh', description: 'Every packet is encrypted and routed peer-to-peer.', icon: LockClosedIcon, }, { name: 'Global IPv6 Address Space', description: 'Every node, app, and service gets its own private address.', icon: GlobeAltIcon, }, { name: 'Self-Healing Routing', description: 'Traffic automatically finds the fastest, most resilient path.', icon: ArrowPathRoundedSquareIcon, }, { name: 'No Central Control', description: 'No servers to trust, no middlemen, no corporate choke-points.', icon: NoSymbolIcon, }, ] export function NetworkCapabilities() { return (
WHAT IT ENABLES

A Private Networking Layer for Everything You Run

Mycelium Network is the backbone for secure, autonomous connectivity across devices, data centers, clusters, and self-hosted environments, anywhere in the world.

{capabilities.map((item) => (
{item.name} {item.description}
))}
) }