From e2dfbda655314019ccabfec876c555436305b99d Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Thu, 4 Jun 2026 11:25:17 +0000 Subject: [PATCH] Deploy --- src/components/sections/TeamSection.tsx | 62 +++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 src/components/sections/TeamSection.tsx diff --git a/src/components/sections/TeamSection.tsx b/src/components/sections/TeamSection.tsx new file mode 100644 index 0000000..57534e2 --- /dev/null +++ b/src/components/sections/TeamSection.tsx @@ -0,0 +1,62 @@ +import Image from 'next/image' +import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/Card' +import Badge from '@/components/ui/Badge' + +export default function TeamSection() { + const team = [ + { + name: 'Sipho Mtungwa', + role: 'Managing Partner', + image: 'https://images.pexels.com/photos/7640741/pexels-photo-7640741.jpeg?auto=compress&cs=tinysrgb&h=350', + description: 'Over 20 years advising Johannesburg-based corporates on M&A, governance, and BBBEE compliance under the Companies Act.' + }, + { + name: 'Thandi Ndlovu', + role: 'Senior Associate – Real Estate', + image: 'https://images.pexels.com/photos/7640741/pexels-photo-7640741.jpeg?auto=compress&cs=tinysrgb&h=350', + description: 'Specialises in commercial property transactions, title due diligence, and property development financing in Sandton.' + }, + { + name: 'Michael Botha', + role: 'Associate – Litigation', + image: 'https://images.pexels.com/photos/7640741/pexels-photo-7640741.jpeg?auto=compress&cs=tinysrgb&h=350', + description: 'Handles high-stakes commercial disputes, arbitration, and cross-border litigation for business owners across SA.' + } + ] + + return ( +
+
+
+

Our Attorneys

+

Meet the Mtungwa & Partners Team

+

+ Seasoned legal professionals dedicated to delivering strategic counsel for South African enterprises. +

+
+
+ {team.map((member, i) => ( + +
+ {member.name} +
+ + {member.name} + {member.role} + + +

{member.description}

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