From a11eddcd4f589ad34b0cb43de308df7960144361 Mon Sep 17 00:00:00 2001 From: Emre Date: Mon, 3 Nov 2025 13:23:26 +0300 Subject: [PATCH] homepage updates --- src/components/AboutExperience.tsx | 4 +- src/components/HomeMilestones.tsx | 8 +- src/components/HomePrinciples.tsx | 115 +++++++++++++++++++++++++---- 3 files changed, 105 insertions(+), 22 deletions(-) diff --git a/src/components/AboutExperience.tsx b/src/components/AboutExperience.tsx index 289bf52..0736a33 100644 --- a/src/components/AboutExperience.tsx +++ b/src/components/AboutExperience.tsx @@ -18,9 +18,9 @@ const timeline = [ { name: 'Launch of New Ventures', description: - '◯ $30M raise underway to expand core infrastructure and invest in new ventures with a focus on interdependent projects that strengthen the ecosystem collectively.', + '◯ $50M raise underway to expand core infrastructure and invest in new ventures with a focus on interdependent projects that strengthen the ecosystem collectively.', description2: - '◯ Designing regulatory framework to facilitate digital assets exchanges and other decentralized financial platforms.', + '◯ Advancing the Geomind program with the phased rollout of Tier H and Tier S datacenters.', date: 'Current Phase', }, { diff --git a/src/components/HomeMilestones.tsx b/src/components/HomeMilestones.tsx index 4cb5c3e..2656dd6 100644 --- a/src/components/HomeMilestones.tsx +++ b/src/components/HomeMilestones.tsx @@ -16,12 +16,12 @@ const timeline = [ date: 'Phase 2', }, { - name: 'Launch of New Ventures', + name: 'Commercial Expansion', description: - '◯ $30M raise underway to expand core infrastructure and invest in new ventures with a focus on interdependent projects that strengthen the ecosystem collectively.', + '◯ $50M raise underway to expand core infrastructure and invest in new ventures with a focus on interdependent projects that strengthen the ecosystem collectively.', description2: - '◯ Designing regulatory framework to facilitate digital assets exchanges and other decentralized financial platforms.', - date: 'Current Phase', + '◯ Advancing the Geomind program with the phased rollout of Tier H and Tier S datacenters.', + date: 'Current Phase', }, { name: 'Scalable Impact', diff --git a/src/components/HomePrinciples.tsx b/src/components/HomePrinciples.tsx index 0cd274a..8ee209e 100644 --- a/src/components/HomePrinciples.tsx +++ b/src/components/HomePrinciples.tsx @@ -1,9 +1,50 @@ -const stats = [ - { id: 1, name: 'Build in ways that respect and protect natural resources.', value: 'Planet First', image: '/images/home/planet.png' }, - { id: 2, name: 'Ensure equality and equity in our ecosystem.', value: 'People First', image: '/images/home/people.png' }, - { id: 3, name: 'Promote collaborative development across all our projects.', value: 'Open Source', image: '/images/home/open.png' }, - { id: 4, name: 'Uphold an ethos of transparency and trust.', value: 'Authenticity', image: '/images/home/authentic.png' }, - { id: 5, name: 'Eliminate design complexities to foster rapid progress.', value: 'Simplicity', image: '/images/home/simple.png' }, +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() { @@ -15,17 +56,59 @@ export function HomePrinciples() {

The Foundation of Every Venture

-

Core Principles Guiding OurWorld's Vision for Building Successful Ventures.

+

+ 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}

+
+ ) + })} +
+
-
- {stats.map((stat) => ( -
- {stat.value} -
{stat.value}
-
{stat.name}
-
- ))} -