diff --git a/src/components/sections/TestimonialsSection.tsx b/src/components/sections/TestimonialsSection.tsx new file mode 100644 index 0000000..82fca28 --- /dev/null +++ b/src/components/sections/TestimonialsSection.tsx @@ -0,0 +1,44 @@ +'use client' + +export default function TestimonialsSection() { + const testimonials = [ + { + name: "Thabo Mokoena", + role: "CEO, Mokoena Holdings", + quote: "Mtungwa & Partners resolved a complex cross-border dispute within six weeks. Their grasp of South African corporate law is unmatched." + }, + { + name: "Lindiwe Dlamini", + role: "Property Developer, Dlamini Estates", + quote: "They handled my real estate portfolio acquisition with precision. Every clause was negotiated to protect my interests." + }, + { + name: "James Botha", + role: "Managing Director, Botha Logistics", + quote: "From business formation to litigation defense, they have been our trusted legal partners for over a decade." + } + ] + + return ( +
+
+
+ Client Testimonials +

What Our Clients Say

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

"{t.quote}"

+
+

{t.name}

+

{t.role}

+
+
+ ))} +
+
+
+ ) +} \ No newline at end of file