This commit is contained in:
Emre
2025-11-04 10:16:06 +03:00
parent 17b2d98eba
commit 5772f87a54
24 changed files with 3 additions and 132 deletions

View File

@@ -19,7 +19,7 @@ export function CallToAction() {
Launch Ventures That Shape the Future
</h2>
<p className="mt-4 text-lg tracking-tight text-white">
Partner with OurWorld to build infrastructure, metaverse platforms, DeFi, education, and digital economy ventures; all backed by funding, mentorship, and mission-aligned infrastructure.
Partner with OurWorld to build infrastructure, AI, DeFi, education, and digital economy ventures; all backed by funding, mentorship, and mission-aligned infrastructure.
</p>
<div className="mt-12 flex flex-col sm:flex-row gap-8 justify-center">
<Button href="/contact" color="white">

View File

@@ -1,21 +0,0 @@
import { CallToAction } from '@/components/CallToAction'
import { Faqs } from '@/components/Faqs'
import { Footer } from '@/components/Footer'
import { Header_darkbg } from '@/components/Header_darkbg'
import { Quote } from '@/components/Quote'
import { VenturesHeroApp } from '@/components/VenturesHeroApp'
export default function Hero() {
return (
<>
<Header_darkbg />
<main>
<VenturesHeroApp />
<Quote />
<CallToAction />
<Faqs />
</main>
<Footer />
</>
)
}