diff --git a/src/components/sections/PartnerProfilesSection.tsx b/src/components/sections/PartnerProfilesSection.tsx new file mode 100644 index 0000000..5f2bcb9 --- /dev/null +++ b/src/components/sections/PartnerProfilesSection.tsx @@ -0,0 +1,144 @@ +import Image from 'next/image'; +import { Mail, Phone } from 'lucide-react'; +import { SiWhatsapp } from 'react-icons/si'; + +const partners = [ + { + name: 'Thulani Gumede', + title: 'Partner — Corporate Law', + image: 'https://images.pexels.com/photos/8730275/pexels-photo-8730275.jpeg?auto=compress&cs=tinysrgb&h=650&w=940', + alt: 'Thulani Gumede, Partner, Corporate Law', + experience: '20+ years', + education: 'LLB (UKZN), LLM (UCT)', + focus: 'Mergers, acquisitions, commercial contracts', + email: 'thulani@gumedepartners.co.za', + phone: '+27315551234', + whatsapp: '27821234567' + }, + { + name: 'Nomusa Zulu', + title: 'Partner — Real Estate', + image: 'https://images.pexels.com/photos/4427615/pexels-photo-4427615.jpeg?auto=compress&cs=tinysrgb&h=650&w=940', + alt: 'Nomusa Zulu, Partner, Real Estate', + experience: '18 years', + education: 'LLB (Wits)', + focus: 'Property developments, conveyancing, sectional title', + email: 'nomusa@gumedepartners.co.za', + phone: '+27315555678', + whatsapp: '27831234567' + }, + { + name: 'Sibusiso Mthembu', + title: 'Senior Associate — Business Litigation', + image: 'https://images.pexels.com/photos/37726678/pexels-photo-37726678.jpeg?auto=compress&cs=tinysrgb&h=650&w=940', + alt: 'Sibusiso Mthembu, Senior Associate, Business Litigation', + experience: '12 years', + education: 'LLB (UKZN), LLM (UP)', + focus: 'Commercial disputes, arbitration, debt recovery', + email: 'sibusiso@gumedepartners.co.za', + phone: '+27315559012', + whatsapp: '27841234567' + }, + { + name: 'Lindiwe Khumalo', + title: 'Senior Attorney — Labour & Employment', + image: 'https://images.pexels.com/photos/7875996/pexels-photo-7875996.jpeg?auto=compress&cs=tinysrgb&h=650&w=940', + alt: 'Lindiwe Khumalo, Senior Attorney, Labour & Employment', + experience: '10 years', + education: 'LLB (UNISA)', + focus: 'Employment contracts, unfair dismissal, CCMA representation', + email: 'lindiwe@gumedepartners.co.za', + phone: '+27315553456', + whatsapp: '27851234567' + } +]; + +export default function PartnerProfilesSection() { + return ( +
+
+
+

+ Senior legal counsel +

+

+ Decades of legal experience, on your side +

+

+ Meet the partners and senior attorneys who deliver strategic counsel in corporate law, + real estate, and business litigation across KwaZulu‑Natal. +

+
+ +
+ {partners.map((partner) => ( +
+
+ {partner.alt} +
+ +
+

+ {partner.name} +

+

+ {partner.title} +

+ +
+

+ Experience:{' '} + {partner.experience} +

+

+ Education:{' '} + {partner.education} +

+

+ Focus:{' '} + {partner.focus} +

+
+ + +
+
+ ))} +
+
+
+ ); +}