const ventures = [ { name: 'Project Mycelium', logo: '/images/ventures/mycelium.png', description: 'Project Mycelium is the community-driven, co-owned decentralized cloud built on GeoMind’s technology, delivering sovereign digital infrastructure for people, enterprises, and public institutions.', url: 'https://projectmycelium.com', learnMoreUrl: './project-mycelium' }, { name: 'GeoMind', logo: '/images/ventures/geo_ico.png', description: 'GeoMind delivers a new generation of decentralized cloud and AI infrastructure with Tier S enterprise and Tier H personal datacenters so anyone from individuals to enterprises can own their cloud and earn from idle capacity.', url: 'https://geomind.io', learnMoreUrl: './geomind' }, { name: 'Zanzibar Digital Free Zone', logo: '/images/ventures/freezone.png', description: 'A Public-Private Partnership (PPP) with the Government of Zanzibar through ZICTIA. 100% digital and automated business operations, offering seamless legal, financial, and operational support for businesses.', url: 'http://freezone.ourworld.tf/', learnMoreUrl: './freezone' }, { name: 'Zanzibar Cyber City', logo: '/images/ventures/cybercity.png', description: 'A visionary startup city being developed as a PPP with the Government of Zanzibar. The cyber city aims to be a collaborative hub for innovation, bringing together startups, investors, and technologists in a state-of-the-art urban environment.', learnMoreUrl: './cybercity' }, { name: 'Sikana', logo: '/images/ventures/ow_icon.png', description: 'Sikana is a social business empowering young people to be resilient, reach their full potential, and contribute to the common good. A global ecosystem for holistic learning - accessible online and offline, affordable to the many, and grounded in culture, care, and collaboration.', url: 'https://sikana.tv', learnMoreUrl: './sikana' }, { name: 'Hero', logo: '/images/ventures/hero.png', description: 'Hero is an agentic AI assistant designed to give individuals full control over their digital identity and assets. Focused on privacy and autonomy, Hero orchestrates trusted AI agents to manage personal information, tasks, and interactions across decentralized platforms.', learnMoreUrl: './hero' } ] const heroContent = { title: 'OurWorld Ventures', subtitle: 'United by shared values, these ventures collectively build the infrastructure, frameworks, and tools needed for true digital autonomy.', backgroundImage: '/images/ventures/earth.jpg', backgroundAlt: 'Earth from space' } export function VenturesHero() { return (
{heroContent.backgroundAlt}

{heroContent.title}

{heroContent.subtitle}

{ventures.map((venture, index) => (
{`${venture.name}
{venture.name}
{venture.description}
Learn more
))}
) }