add profiles

This commit is contained in:
2025-07-16 21:04:31 +02:00
parent 54f552fe32
commit 003e6bff25
7 changed files with 312 additions and 9 deletions

View 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 />
</>
)
}

View 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 />
</>
)
}