add logos
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
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'
|
||||
@@ -12,6 +11,8 @@ import { HomePrinciples } from '@/components/HomePrinciples'
|
||||
import { HomeMilestones } from '@/components/HomeMilestones'
|
||||
import { HomeVentures } from '@/components/HomeVentures'
|
||||
import { Quote } from '@/components/Quote'
|
||||
import { Header } from '@/components/Header'
|
||||
import { Header_darkbg } from '@/components/Header_darkbg'
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
|
20
src/app/ventures/hero/page.tsx
Normal file
20
src/app/ventures/hero/page.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
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 />
|
||||
</>
|
||||
)
|
||||
}
|
21
src/app/ventures/indaba/page.tsx
Normal file
21
src/app/ventures/indaba/page.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
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 { VenturesIndaba } from '@/components/VenturesIndaba'
|
||||
|
||||
export default function Indaba() {
|
||||
return (
|
||||
<>
|
||||
<Header_darkbg />
|
||||
<main>
|
||||
<VenturesIndaba />
|
||||
<Quote />
|
||||
<CallToAction />
|
||||
<Faqs />
|
||||
</main>
|
||||
<Footer />
|
||||
</>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user