"use client"; import { Container } from '@/components/Container' import { Eyebrow, H3, P } from '@/components/Texts' /* ✅ Custom Icons (unchanged) */ function KubernetesIcon(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } function AIAgentsIcon(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } function S3StorageIcon(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } function VPNIcon(props: React.ComponentPropsWithoutRef<'svg'>) { return ( ) } const features = [ { name: 'Kubernetes Clusters', description: 'Deploy and scale containerized apps across your own hardware.', icon: KubernetesIcon, }, { name: 'AI Agents & LLM Runtimes', description: 'Run open-source models locally, securely, and offline.', icon: AIAgentsIcon, }, { name: 'S3-Compatible Storage', description: 'Your own personal over-the-network drive, encrypted end-to-end.', icon: S3StorageIcon, }, { name: 'Mesh VPN & Zero-Trust Networking', description: 'Securely connect all your devices and remote locations.', icon: VPNIcon, }, ] export function HomeHosting() { return (
{/* ✅ Top horizontal line with spacing */}
{/* ✅ Inner content container */}
IN ACTIVE EVOLUTION

Expanding the Network Layer

The Mycelium Network is evolving to support richer data movement, identity, and application connectivity across the mesh. These enhancements deepen autonomy and improve real-world usability.

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

    {feature.description}

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