+
diff --git a/public/images/about/exits.png b/public/images/about/exits.png
new file mode 100644
index 0000000..8899877
Binary files /dev/null and b/public/images/about/exits.png differ
diff --git a/public/images/home/kds.png b/public/images/home/kds.png
new file mode 100644
index 0000000..8b17f18
Binary files /dev/null and b/public/images/home/kds.png differ
diff --git a/public/images/home/quotes.png b/public/images/home/quotes.png
new file mode 100644
index 0000000..24a64ab
Binary files /dev/null and b/public/images/home/quotes.png differ
diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..96790cd
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,34 @@
+import { CallToAction } from '@/components/CallToAction'
+import { Faqs } from '@/components/Faqs'
+import { Footer } from '@/components/Footer'
+import { Header_darkbg } from '@/components/Header_darkbg'
+import { HomeAbout } from '@/components/HomeAbout'
+import { Hero } from '@/components/Hero'
+import { Pricing } from '@/components/Pricing'
+import { PrimaryFeatures } from '@/components/PrimaryFeatures'
+import { SecondaryFeatures } from '@/components/SecondaryFeatures'
+import { Testimonials } from '@/components/Testimonials'
+import { HomePrinciples } from '@/components/HomePrinciples'
+import { HomeMilestones } from '@/components/HomeMilestones'
+import { HomeVentures } from '@/components/HomeVentures'
+import { Quote } from '@/components/Quote'
+import { AboutHero } from '@/components/AboutHero'
+import { AboutMission } from '@/components/AboutMission'
+import { AboutExperience } from '@/components/AboutExperience'
+
+export default function About() {
+ return (
+ <>
+
+
EXPERIENCE
++ Incubaid's approach was very IT-centric – focusing on storage, automation and cloud. During this wave from 2000 till 2015, some of those companies defined parts of the cloud landscape, and are still being used actively today. +
+ABOUT
++ OurWorld is more than a venture creator – we create and develop new businesses, typically in the form of startups. We don't just fund individual ventures – we actively shape the architecture of our unique ecosystem. Support includes providing funding, resources, and mentorship. +
++++ "We need a human-centric Internet co-owned by all of us, as was intended from the start. One where everyone is equal, where everyone owns their own data, allowing human flourishing to thrive." +
+
MISSION
++ OurWorld aims not just to do business, but to do good for the world while we're at it. We are an international team of experts and passionate believers in a better world who choose to act to make a difference. +
++ This journey began with the creation of a new Internet infrastructure layer, a process that has taken over two decades – and was made possible by the contributions of thousands of people. Thank you to everyone who has made this possible. +
++ Some of our co-founders have experience running Incubaid, a successful incubator focused primarily on helping to change our planet for the better through technology that supports decentralization. +
++ Now in this stage, we are focused on paving the way for Augmented Collective Intelligence, as described by Abhishek Gupta: emergent intelligence from the effective collaboration of human and machine agents to solve shared problems where the whole is greater than the sum of its parts. +
+If you can’t find what you’re looking for, email our support team diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 0599572..190ea7e 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,50 +1,172 @@ -import Link from 'next/link' +import { Logo_darkbg } from '@/components/Logo_darkbg' -import { Container } from '@/components/Container' -import { Logo } from '@/components/Logo' -import { NavLink } from '@/components/NavLink' +const navigation = { + solutions: [ + { name: 'Marketing', href: '#' }, + { name: 'Analytics', href: '#' }, + { name: 'Automation', href: '#' }, + { name: 'Commerce', href: '#' }, + { name: 'Insights', href: '#' }, + ], + support: [ + { name: 'Submit ticket', href: '#' }, + { name: 'Documentation', href: '#' }, + { name: 'Guides', href: '#' }, + ], + company: [ + { name: 'About', href: '#' }, + { name: 'Blog', href: '#' }, + { name: 'Jobs', href: '#' }, + { name: 'Press', href: '#' }, + ], + legal: [ + { name: 'Terms of service', href: '#' }, + { name: 'Privacy policy', href: '#' }, + { name: 'License', href: '#' }, + ], + social: [ + { + name: 'Facebook', + href: '#', + icon: (props) => ( + + ), + }, + { + name: 'Instagram', + href: '#', + icon: (props) => ( + + ), + }, + { + name: 'X', + href: '#', + icon: (props) => ( + + ), + }, + { + name: 'GitHub', + href: '#', + icon: (props) => ( + + ), + }, + { + name: 'YouTube', + href: '#', + icon: (props) => ( + + ), + }, + ], +} export function Footer() { return ( -