import { GlobeAltIcon, KeyIcon, ServerStackIcon, ShieldCheckIcon, } from '@heroicons/react/24/outline' import { CP, CT, Eyebrow, H3, P } from '@/components/Texts' import { DarkCard } from '@/components/ui/cards' const features = [ { name: 'No central servers.', description: 'Your devices form a distributed network, eliminating reliance on centralized data centers.', icon: GlobeAltIcon, }, { name: 'No data extraction.', description: 'You own your data. Run services and AI models on your own devices, ensuring privacy and control.', icon: KeyIcon, }, { name: 'No single point of control.', description: 'A decentralized architecture means no single entity can dictate or censor your online experience.', icon: ServerStackIcon, }, { name: 'Mesh VPN & Zero-Trust Networking', description: 'Create a secure, private network between your devices, accessible from anywhere.', icon: ShieldCheckIcon, }, ] export function HomeWhy() { return (
{/* ✅ Top horizontal line with spacing */}
Why It Matters

Why Mycelium?

The current internet is a rent-seeking one. Mycelium builds one that belongs to everyone — where infrastructure, data, and intelligence stay with the people and organizations who create them.

{features.map((feature) => (
{feature.name} {feature.description}
))}
{/* ✅ Bottom horizontal line with spacing */}
) }