import { motion } from 'framer-motion' import { Globe } from '../../components/ui/Globe' import { CountUpNumber } from '../../components/CountUpNumber' import { Container } from '../../components/Container' const stats = [ { value: 54958, label: 'CPU Cores' }, { value: 1493, label: 'Nodes' }, { value: 5388956, label: 'GB Storage' }, { value: 44, label: 'Countries' }, ] export function CloudHero() { return (
{/* Text Content */}

Mycelium Cloud

Revolutionary Kubernetes platform that transforms how teams deploy and manage cloud-native applications at scale

{/* Globe */}
{/* Stats */}
{stats.map((stat, index) => (

{stat.label}

))}
) }