From c69ff52b167114d1672b8284b60ca1beb778c066 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:38:56 +0000 Subject: [PATCH] Deploy --- .../sections/GuestsLalaKahlePraiseSection.tsx | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/components/sections/GuestsLalaKahlePraiseSection.tsx diff --git a/src/components/sections/GuestsLalaKahlePraiseSection.tsx b/src/components/sections/GuestsLalaKahlePraiseSection.tsx new file mode 100644 index 0000000..e141c60 --- /dev/null +++ b/src/components/sections/GuestsLalaKahlePraiseSection.tsx @@ -0,0 +1,29 @@ +'use client' + +export default function GuestsLalaKahlePraiseSection() { + const testimonials = [ + { name: "Sipho Mkhize", role: "Business traveller from Durban", quote: "Immaculate cleanliness, secure parking, and the warmest welcome. Woke up to zebras grazing across the road — unforgettable." }, + { name: "Linda Botha", role: "UKZN visiting lecturer", quote: "Perfect for academics. Peaceful, fast Wi-Fi, and a hearty English breakfast. Felt like a queen during my stay." }, + { name: "James & Karen Wilson", role: "Transit guests from the UK", quote: "One night turned into three. The braai area and pool made our stopover feel like a mini-holiday." }, + ] + + return ( +
+
+

Lala Kahle — Rest Well

+

+ Hear from guests who experienced regal treatment and restful sleep at KwaNtofontofo. +

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

“{t.quote}”

+

{t.name}

+

{t.role}

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