"use client"; import { Eyebrow, P, CT, CP, H3} from "@/components/Texts"; import { CpuChipIcon, GlobeAltIcon, LockClosedIcon, ArrowPathIcon, ShieldCheckIcon, } from "@heroicons/react/24/solid"; const networkUseCases = [ { isIntro: true, eyebrow: "WHAT IT ENABLES", title: "What It Enables", description: "The framework gives you full control over where agents live, how they connect, and what data they use.", }, { title: "Run agents on your own hardware", description: "Deploy AI processes on laptops, homelabs, edge nodes, or full clusters with no cloud dependency.", icon: CpuChipIcon, }, { title: "Connect them over the secure Mycelium network", description: "Agents communicate privately across homes, clouds, countries, and environments in one address space.", icon: GlobeAltIcon, }, { title: "Keep data and memory private by default", description: "Your datasets, tools, prompts, embeddings, and memory stay local unless you choose otherwise.", icon: LockClosedIcon, }, { title: "Build workflows across cloud + edge", description: "Orchestrate multi-node jobs, pipelines, and real-time systems that live anywhere in your infrastructure.", icon: ArrowPathIcon, }, { title: "Operate securely in regulated contexts", description: "Run agents in sectors requiring strict data residency, verified identity, and controlled connectivity.", icon: ShieldCheckIcon, }, { title: "Blend local + remote intelligence", description: "Let lightweight agents run locally while offloading heavy tasks to trusted nodes, maintaining privacy and performance balance.", icon: CpuChipIcon, }, ]; export function AgentUsecase() { return (
{/* Top horizontal spacing line */}
{/* Main framed section */}
{/* Intro block (from isIntro item) */} {networkUseCases[0].isIntro && ( <> {networkUseCases[0].eyebrow}

{networkUseCases[0].title}

{networkUseCases[0].description}

)}
{/* Grid of features (excluding intro) */}
    {networkUseCases.slice(1).map((item, idx) => (
  • {/* Icon */} {item.icon && (
    )} {/* Title */} {item.title} {/* Description */} {item.description}
  • ))}
{/* Bottom horizontal line */}
); }