add new content

This commit is contained in:
2025-08-13 18:37:34 +02:00
commit 127bf9c83b
350 changed files with 63539 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
import { CallToAction3 } from '@/components/CallToAction3'
import { Footer } from '@/components/Footer'
import { Header } from '@/components/Header'
import Daha1 from '@/components/Daha1'
import Daha2 from '@/components/Daha2'
import Veda1 from '@/components/Veda1'
import Veda2 from '@/components/Veda2'
import Veda3 from '@/components/Veda3'
import Veda4 from '@/components/Veda4'
export default function Dahabiyas() {
return (
<>
<Header />
<main>
<Daha1 />
<Daha2 />
<Veda1 />
<Veda2 />
<Veda3 />
<Veda4 />
<CallToAction3 />
</main>
<Footer />
</>
)
}