From a50cda1f21d808592cfa0f5830471e112ef9ec6e Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 14 Jul 2026 19:09:00 +0000 Subject: [PATCH] Deploy --- .../sections/DiscerningGuestVoicesSection.tsx | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/components/sections/DiscerningGuestVoicesSection.tsx diff --git a/src/components/sections/DiscerningGuestVoicesSection.tsx b/src/components/sections/DiscerningGuestVoicesSection.tsx new file mode 100644 index 0000000..15614f2 --- /dev/null +++ b/src/components/sections/DiscerningGuestVoicesSection.tsx @@ -0,0 +1,51 @@ +'use client' + +export default function DiscerningGuestVoicesSection() { + const testimonials = [ + { + initials: 'C.R.', + city: 'Zürich', + quote: 'The silence at dawn is something I have never experienced. Our guide tracked a pack of wild dogs across the riverbed — a private sighting that will stay with me forever.' + }, + { + initials: 'A.L.', + city: 'New York', + quote: 'Every meal felt like an event — the chef came to our table each evening to explain the ingredients sourced from the region. The wine cellar alone is worth the journey.' + }, + { + initials: 'E.H.', + city: 'Tokyo', + quote: 'The treatment room opens onto the bushveld. During my massage, a herd of elephants passed within fifty metres. I have never felt so connected to a place.' + } + ] + + return ( +
+
+

+ What our guests carry home +

+

+ Intimate reflections — shared in confidence, offered here with permission. +

+
+ {testimonials.map((t, i) => ( +
+
+
+

+ “{t.quote}” +

+
+ {t.initials} + · + {t.city} +
+
+
+ ))} +
+
+
+ ) +}