import { ComputerDesktopIcon, ArrowsRightLeftIcon, CircleStackIcon, } from '@heroicons/react/24/solid' const benefits = [ { id: 1, title: 'Each agent operates entirely inside your environment', icon: ComputerDesktopIcon, }, { id: 2, title: 'They communicate peer-to-peer across trusted nodes', icon: ArrowsRightLeftIcon, }, { id: 3, title: 'They access data locally without exposing it to external providers', icon: CircleStackIcon, }, ] export function AgentDesign() { return (
{/* ✅ Top horizontal line with spacing */}
{/* ✅ Main content */}
{benefits.map((item) => (

{item.title}

))}
{/* ✅ Bottom horizontal line with spacing */}
) }