import { GlobeAltIcon, UsersIcon, CommandLineIcon, ShieldCheckIcon, SparklesIcon, } from '@heroicons/react/24/outline' const foundations = [ { id: 1, title: 'Planet First', description: 'We act with respect for the Earth. Each initiative supports regeneration and uses natural resources responsibly. Every venture should leave the planet better than it found it.', icon: GlobeAltIcon, }, { id: 2, title: 'People First', description: 'Empowering people to own their digital lives through shared ownership, inclusive governance, and lifelong learning so everyone can grow and take part.', icon: UsersIcon, }, ] const tools = [ { id: 3, title: 'Open Source', description: 'Everything we build is open source. Anyone can use it, improve it, and connect to the ecosystem. Transparency keeps innovation honest.', icon: CommandLineIcon, }, { id: 4, title: 'Simplicity', description: 'Complex systems slow progress. We design modular, autonomous tools that remove unnecessary layers.', icon: SparklesIcon, }, { id: 5, title: 'Authenticity', description: 'We are restoring trust online. Sovereign digital tools verify people and information, building a culture of transparency and accountability.', icon: ShieldCheckIcon, }, ] export function HomePrinciples() { return (

The Foundation of Every Venture

We start every project with two essentials: protect the planet and empower people. Everything else follows from there.

Foundational Commitments

{foundations.map((item) => { const Icon = item.icon return (

{item.title}

{item.description}

) })}

Tools We Deploy

With people and planet at the core, these are the principles that shape how we build and operate.

{tools.map((item) => { const Icon = item.icon return (

{item.title}

{item.description}

) })}
) }