From 377c8d5aa7235e8a821231c11c8bb2ca5f9a96ae Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Wed, 15 Jul 2026 09:25:29 +0000 Subject: [PATCH] Deploy --- src/components/sections/UmlolozeloSection.tsx | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/components/sections/UmlolozeloSection.tsx 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}

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