From f6190164529fdcf8ebce8e8f25275de7b957cf9c Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Wed, 9 Jul 2025 17:40:02 +0200 Subject: [PATCH] edit --- src/components/HomePrinciples.tsx | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/components/HomePrinciples.tsx b/src/components/HomePrinciples.tsx index 4a9517c..7a0c36e 100644 --- a/src/components/HomePrinciples.tsx +++ b/src/components/HomePrinciples.tsx @@ -1,9 +1,9 @@ const stats = [ - { id: 1, name: 'Build in ways that respect and protect natural resources.', value: 'Planet First' }, - { id: 2, name: 'Ensure equality and equity in our ecosystem.', value: 'People First' }, - { id: 3, name: 'Promote collaborative development across all our projects.', value: 'Open Source' }, - { id: 4, name: 'Uphold an ethos of transparency and trust.', value: 'Authenticity' }, - { id: 5, name: 'Eliminate design complexities to foster rapid progress.', value: 'Simplicity' }, + { 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' }, ] export function HomePrinciples() { @@ -13,15 +13,16 @@ export function HomePrinciples() {

- Trusted by creators worldwide + The Foundation of Every Venture

-

Lorem ipsum dolor sit amet consect adipisicing possimus.

+

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

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