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} +
+
+
+ ))} +
+
+
+ ) +}