"use client"; const benefits = [ { id: 1, title: "For Integrators & Builders", description: "Deploy sovereign infrastructure for organizations, governments, and large-scale systems.", image: "/images/dev.png", }, { id: 2, title: "For Enterprises & Institutions", description: "Protect data, meet local compliance, and unlock new AI capabilities across distributed environments.", image: "/images/cons.png", }, { id: 3, title: "For Sovereignty Seekers", description: "Run nodes, build applications, and connect directly without relying on centralized platforms.", image: "/images/seekers.png", }, ]; export function HomeDesign() { return (
{/* Top spacing line */}
{/* Content */}
{benefits.map((item) => (
{/* Image on the LEFT */} {item.title} {/* Text on the RIGHT */}

{item.title}

{item.description}

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