import { useId } from 'react' import { Container } from '@/components/Container' import { CP } from '@/components/Texts' const features = [ { name: 'Sovereign DNS', description: 'Human-readable names secured by your keypair, not a registrar. Unblockable discovery, private namespaces, and instant resolution across PODs.', icon: DeviceListIcon, }, { name: 'Integrated VPN (Desktop)', description: 'Connect securely from anywhere. No setup and no servers needed. Peer-to-peer routing delivers local speed and global reach.', icon: DeviceLockIcon, }, { name: 'Unstoppable Publishing', description: 'Host sites or services directly from your POD. Signed content, geo-aware delivery, and built-in resistance to takedowns.', icon: DeviceChartIcon, }, { name: 'AI-Driven Search', description: 'Private, semantic search across your own data and sites. Indexes locally, shares results securely, and retrieves instantly on-edge.', icon: DeviceArrowIcon, }, { name: 'Private Chat', description: 'Peer-to-peer messaging with zero metadata and zero servers. Works offline through nearby peers and is encrypted end-to-end.', icon: DeviceCardsIcon, }, { name: 'On-Network AI', description: 'Run LLMs and AI tools directly inside the network. Keep data local, distribute workloads, and build your own autonomous agents.', icon: DeviceClockIcon, }, ] function DeviceArrowIcon(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } function DeviceCardsIcon(props: React.ComponentPropsWithoutRef<'svg'>) { let id = useId() return ( ) } function DeviceClockIcon(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } function DeviceListIcon(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } function DeviceLockIcon(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } function DeviceChartIcon(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } export function SecondaryFeatures() { return (
{/* ✅ Top horizontal line with spacing */}

FEATURES

Core Features

The Mycelium Network is evolving with new features to support richer data movement, identity, and application connectivity across the mesh.

    {features.map((feature) => (
  • {feature.name}

    {feature.description}

  • ))}
{/* ✅ Bottom horizontal line with spacing */}
) }