add profiles
This commit is contained in:
23
src/app/ventures/freezone/page.tsx
Normal file
23
src/app/ventures/freezone/page.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
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 { VenturesFreezone } from '@/components/VenturesFreezone'
|
||||
import { VenturesGeomind } from '@/components/VenturesGeomind'
|
||||
|
||||
|
||||
export default function Freezone() {
|
||||
return (
|
||||
<>
|
||||
<Header_darkbg />
|
||||
<main>
|
||||
<VenturesFreezone />
|
||||
<Quote />
|
||||
<CallToAction />
|
||||
<Faqs />
|
||||
</main>
|
||||
<Footer />
|
||||
</>
|
||||
)
|
||||
}
|
21
src/app/ventures/geomind/page.tsx
Normal file
21
src/app/ventures/geomind/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 { VenturesGeomind } from '@/components/VenturesGeomind'
|
||||
|
||||
export default function Geomind() {
|
||||
return (
|
||||
<>
|
||||
<Header_darkbg />
|
||||
<main>
|
||||
<VenturesGeomind />
|
||||
<Quote />
|
||||
<CallToAction />
|
||||
<Faqs />
|
||||
</main>
|
||||
<Footer />
|
||||
</>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user