diff --git a/src/components/sections/GuestReverieTestimonialsSection.tsx b/src/components/sections/GuestReverieTestimonialsSection.tsx new file mode 100644 index 0000000..021e0ff --- /dev/null +++ b/src/components/sections/GuestReverieTestimonialsSection.tsx @@ -0,0 +1,60 @@ +'use client' + +export default function GuestReverieTestimonialsSection() { + const testimonials = [ + { + name: 'Eleanor Vance', + role: 'Guest from London', + quote: 'Waking to the roar of a lion across the river — I have never felt so alive.', + }, + { + name: 'Mateo Silva', + role: 'Travel writer, São Paulo', + quote: 'The ranger knew every bird by its call. That kind of intimacy with the bush is rare.', + }, + { + name: 'Yuki Tanaka', + role: 'Bespoke travel curator, Tokyo', + quote: 'Six suites, infinite privacy. Every detail whispers care.', + }, + ] + + return ( +
+
+ {/* Eyebrow */} +
+
+ + Guest Reverie + +
+
+

+ Whispers from the Wild +

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

+ “{t.quote}” +

+

{t.name}

+

+ {t.role} +

+
+ ))} +
+
+
+ ) +}