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}
))}
) }