diff --git a/src/components/sections/GuestTestimonialsSection.tsx b/src/components/sections/GuestTestimonialsSection.tsx new file mode 100644 index 0000000..d8ef356 --- /dev/null +++ b/src/components/sections/GuestTestimonialsSection.tsx @@ -0,0 +1,32 @@ +'use client' +export default function GuestTestimonialsSection() { + const testimonials = [ + { name: 'Sarah & James McIntyre', role: 'From Cape Town', quote: 'The most magical bush break. Every detail was flawless, from sundowners to the roaring campfire.' }, + { name: 'Oliver Schmidt', role: 'Travel journalist', quote: 'Mpofana Lodge captures the soul of Zululand. A place where time slows and wildlife thrives.' }, + { name: 'Amina & David Osei', role: 'Anniversary stay', quote: 'Pure luxury woven into nature. The suite, the game drives, the hospitality — unforgettable.' }, + ] + + return ( +
+
+
+ + Word of Mouth + +
+

+ What Guests Say +

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

“{t.quote}”

+

{t.name}

+

{t.role}

+
+ ))} +
+
+
+ ) +} \ No newline at end of file