diff --git a/src/components/sections/UmlolozeloSection.tsx b/src/components/sections/UmlolozeloSection.tsx new file mode 100644 index 0000000..5f9c86e --- /dev/null +++ b/src/components/sections/UmlolozeloSection.tsx @@ -0,0 +1,43 @@ +'use client' + +export default function UmlolozeloSection() { + const testimonials = [ + { + name: 'Thandi Mthembu', + role: 'Frequent visitor, Johannesburg', + quote: 'The staff remembered our names and dietary preferences from our first stay. That kind of attention makes Zulu Lodge feel like home.' + }, + { + name: 'David & Sarah Johnson', + role: 'First-time safari guests, London', + quote: 'We came for the wildlife but left with a deep appreciation for Zulu culture. The storytelling around the boma fire was unforgettable.' + }, + { + name: 'Mr. & Mrs. Van der Merwe', + role: 'Cape Town, yearly family reunion', + quote: 'Three generations under one thatched roof — the lodge catered to toddlers and grandparents alike with grace and warmth.' + } + ] + + return ( +
+
+

+ A Chorus of Guest Praise +

+

+ Real voices that convey trust and warmth — stories of serenity, adventure, and heartfelt Zulu hospitality. +

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

"{t.quote}"

+

{t.name}

+

{t.role}

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