import { H3, P, Eyebrow, Small } from "@/components/Texts"; const highlights = [ { label: "Local Execution", title: "Agents run entirely inside your environment.", description: "Models, logic, and memory stay within your own trusted hardware—never behind third-party APIs.", }, { label: "Mesh Connectivity", title: "They communicate peer-to-peer across trusted nodes.", description: "Agents form direct encrypted paths between environments, without relays or central servers.", }, { label: "Private Data Access", title: "They use your data without sending it elsewhere.", description: "Your datasets, embeddings, and context never leave your boundaries—processing stays local.", }, { label: "Portability", title: "They move with you, not with a cloud provider.", description: "Agents follow your devices, networks, and workflows, remaining sovereign across every location.", }, ]; export function CloudPros() { return (
{/* Top spacing line */}
{/* Intro Block */}
Cloud Advantages

Why It’s Different

Most AI systems run on centralized clouds, where the models, data, and logic operate behind third-party APIs. Mycelium Agents flip that architecture, running entirely inside your environment so control, privacy, and autonomy stay with you.

{/* Grid */}
{highlights.map((item) => (
{/* Glow */}
{item.label}

{item.title}

{item.description}

))}
{/* Bottom spacing */}
); }