add cyber

This commit is contained in:
2025-07-17 15:56:30 +02:00
parent 4dfbb2d8a2
commit bfa5afad87
3 changed files with 167 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
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'
import { VenturesCybercity } from '@/components/VenturesCybercity'
export default function cybercity() {
return (
<>
<Header_darkbg />
<main>
<VenturesCybercity />
<Quote />
<CallToAction />
<Faqs />
</main>
<Footer />
</>
)
}