From cf72b8ae1bcf5e938298c6d7dcc596461637f7cd Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:38:48 +0000 Subject: [PATCH] Deploy --- .../sections/ClientTestimonialsSection.tsx | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/components/sections/ClientTestimonialsSection.tsx diff --git a/src/components/sections/ClientTestimonialsSection.tsx b/src/components/sections/ClientTestimonialsSection.tsx new file mode 100644 index 0000000..36caca2 --- /dev/null +++ b/src/components/sections/ClientTestimonialsSection.tsx @@ -0,0 +1,49 @@ +export default function ClientTestimonialsSection() { + const testimonials = [ + { + name: 'Bongani', + outcome: 'Acquitted', + quote: 'They believed in my innocence when no one else would. Mashobane & Associate gave me my life back.', + }, + { + name: 'Portia', + outcome: 'Charges Dropped', + quote: 'I was terrified of going to prison for something I didn\'t do. Mr. Mashobane exposed the flaws in the state\'s case in court.', + }, + { + name: 'Teboho', + outcome: 'Reduced Sentence', + quote: 'The team fought for me like family. Their knowledge of South African criminal procedure turned my situation around.', + }, + ] + + return ( +
+
+
+

Real People, Real Results

+

+ Hear from clients whose lives we have helped turn around. +

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

“{t.quote}”

+
+ {t.name} + + {t.outcome} + +
+
+ ))} +
+
+
+ ) +} \ No newline at end of file