From e9790da9c8be8e81a1023367dfbe902c3950ea67 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Wed, 9 Jul 2025 17:27:24 +0200 Subject: [PATCH] edit --- src/app/page.tsx | 1 - src/components/HomeAbout.tsx | 72 ++++++++++++++++++++++++++++++++++++ 2 files changed, 72 insertions(+), 1 deletion(-) create mode 100644 src/components/HomeAbout.tsx diff --git a/src/app/page.tsx b/src/app/page.tsx index 1548ba2..97b290f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,7 +16,6 @@ export default function Home() {
- diff --git a/src/components/HomeAbout.tsx b/src/components/HomeAbout.tsx new file mode 100644 index 0000000..768bbd7 --- /dev/null +++ b/src/components/HomeAbout.tsx @@ -0,0 +1,72 @@ +import { ArrowPathIcon, CircleStackIcon, InboxIcon, RocketLaunchIcon, ScaleIcon, TrashIcon, UsersIcon } from '@heroicons/react/24/outline' + +const features = [ + { + name: 'A Funding Platform', + description: + 'Unlock unparalleled financial support for diverse, forward-thinking projects, focusing on cutting-edge technologies that benefit both the environment and society.', + href: '#', + icon: CircleStackIcon, + }, + { + name: 'Legal & Financial Autonomy', + description: + 'Experience true independence with our integrated system offering legal and financial freedom. Through innovative structures like free zones, we create a fertile ground for your business to flourish.', + href: '#', + icon: ScaleIcon, + }, + { + name: 'Life Supporting Infrastructure', + description: + 'Benefit from our holistic infrastructure that supports financial, educational- tailored to ensure that every startup within our venture ecosystem can thrive and grow sustainably.', + href: '#', + icon: ArrowPathIcon, + }, + { + name: 'Technological Empowerment', + description: + 'Harness the power of our advanced interconnected technological ecosystem, designed to grant individuals, communities, and countries complete digital autonomy.', + href: '#', + icon: RocketLaunchIcon, + }, +] + +export function HomeAbout() { + return ( +
+
+
+

ABOUT

+

+ Enabling an Interconnected Ecosystem to Enhance human Intelligence Through Collaboration. +

+
+
+

+ OurWorld is a venture creator, dedicated to empowering startups with the resources and support they need to revolutionize the future. +

+
+
+
+ {features.map((feature) => ( +
+
+
+
+ {feature.name} +
+
+

{feature.description}

+

+ +

+
+
+ ))} +
+
+
+
+ ) +}