import { CP } from '@/components/Texts' import { ShieldCheckIcon, GlobeAltIcon, BoltIcon, BanknotesIcon, } from '@heroicons/react/24/solid' const benefits = [ { id: 1, title: "Unbreakable by Design", desc: "No central cloud to censor or fail. The network heals itself.", icon: ShieldCheckIcon, }, { id: 2, title: "Sovereign by Default", desc: "Identity, compute, and data belong to you – cryptographically.", icon: GlobeAltIcon, }, { id: 3, title: "Hackable & Open", desc: "Learn, build, and experiment without permission.", icon: BoltIcon, }, { id: 4, title: "Cost & Energy Efficient", desc: "Distributed hardware eliminates hyperscale overhead.", icon: BanknotesIcon, }, ]; export function HomeBenefits() { return (
{/* ✅ Top horizontal line with spacing */}
{/* ✅ Main content */}
{benefits.map((item) => (

{item.title}

{item.desc}
))}
{/* ✅ Bottom line + spacing */}
); }