This commit is contained in:
2025-08-27 14:50:32 +02:00
parent 5ca1f1a3f7
commit 62ecd24483
2 changed files with 31 additions and 20 deletions

View File

@@ -10,6 +10,7 @@ import Veda1 from '@/components/Veda1'
import Veda2 from '@/components/Veda2'
import Veda3 from '@/components/Veda3'
import Veda4 from '@/components/Veda4'
import { Testimonials } from '@/components/Testimonials'
export default function Dahabiyas() {
const [selectedVeda, setSelectedVeda] = useState('veda1')
@@ -34,8 +35,9 @@ export default function Dahabiyas() {
<Header />
<main>
<Daha1 />
<Daha2 onVedaSelect={setSelectedVeda} />
<Daha2 onVedaSelect={setSelectedVeda} selectedVeda={selectedVeda} />
{renderSelectedVeda()}
<Testimonials />
</main>
<Footer />
</>