import { CpuChipIcon, CubeIcon, CircleStackIcon, LockClosedIcon, } from '@heroicons/react/24/outline' import { CP, CT, Eyebrow, H3, P } from '../../components/Texts' import { DarkCard } from '../../components/ui/cards' const features = [ { name: 'Kubernetes Clusters', description: 'Deploy and scale containerized apps across your own hardware. enabling a world of possibilities..', icon: CubeIcon, }, { name: 'AI Agents & LLM Runtimes', description: 'Run open-source models locally, securely, and offline.', icon: CpuChipIcon, }, { name: 'S3-Compatible Storage', description: 'Your own personal over-the-network drive, encrypted end-to-end.', icon: CircleStackIcon, }, { name: 'Mesh VPN & Zero-Trust Networking', description: 'Securely connect all your devices and remote locations.', icon: LockClosedIcon, }, ] export function HomeHostingDark() { return (
DEPLOY

Run Real Infrastructure on Your Own Hardware

Build and run production-grade workloads on hardware you control, whether it’s your own node or capacity from the decentralized grid. Mycelium handles the networking, orchestration, and security layers, so you can deploy services the same way you would on a public cloud, without giving your data or control to anyone.

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