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