From 204a6e41311b2f2bdf8a836b8ea74fb68ef4447e Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 23 Jun 2026 08:39:15 +0000 Subject: [PATCH] Deploy --- .../sections/TrustCredentialsSection.tsx | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/components/sections/TrustCredentialsSection.tsx diff --git a/src/components/sections/TrustCredentialsSection.tsx b/src/components/sections/TrustCredentialsSection.tsx new file mode 100644 index 0000000..984e499 --- /dev/null +++ b/src/components/sections/TrustCredentialsSection.tsx @@ -0,0 +1,37 @@ +'use client' + +import { Award, Shield, ThumbsUp, Users } from 'lucide-react' + +export default function TrustCredentialsSection() { + const stats = [ + { icon: Award, value: '32+', label: "Years of Experience", color: "text-[#D4AF37]" }, + { icon: Users, value: '5,000+', label: "Cases Handled", color: "text-[#D4AF37]" }, + { icon: ThumbsUp, value: '98%', label: "Client Satisfaction", color: "text-[#D4AF37]" }, + { icon: Shield, value: 'LSNP', label: "Professional Body Affiliation", color: "text-[#D4AF37]" }, + ] + + return ( +
+
+

Why Choose Mashobane & Associate?

+
+ {stats.map((stat, idx) => { + const Icon = stat.icon + return ( +
+ +

{stat.value}

+

{stat.label}

+
+ ) + })} +
+
+

+ Member of the Law Society of the Northern Provinces and Johannesburg Bar Association. +

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