diff --git a/src/app/dahabiyas/page.jsx b/src/app/dahabiyas/page.jsx
index 6d5d647..d862174 100644
--- a/src/app/dahabiyas/page.jsx
+++ b/src/app/dahabiyas/page.jsx
@@ -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() {
-
+
{renderSelectedVeda()}
+
>
diff --git a/src/components/Daha2.jsx b/src/components/Daha2.jsx
index 418cb62..5f7f5fd 100644
--- a/src/components/Daha2.jsx
+++ b/src/components/Daha2.jsx
@@ -33,31 +33,40 @@ const categories = [
},
]
-export default function Daha2({ onVedaSelect }) {
+export default function Daha2({ onVedaSelect, selectedVeda }) {
return (
- {categories.map((category) => (
-
onVedaSelect(category.vedaId)}
- >
-
{
+ const isSelected = selectedVeda === category.vedaId;
+ return (
+
onVedaSelect(category.vedaId)}
>
-

+
+

+
+
{category.name}
+
{category.description}
-
{category.name}
-
{category.description}
-
- ))}
+ )
+ })}