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.', 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

Turn your own machines into real, production-grade infrastructure. Mycelium handles the networking, orchestration, and security layers, so you can deploy services the same way you would on public cloud without giving your data or control to anyone.

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