diff --git a/src/components/sections/TeamSection.tsx b/src/components/sections/TeamSection.tsx new file mode 100644 index 0000000..bd8d751 --- /dev/null +++ b/src/components/sections/TeamSection.tsx @@ -0,0 +1,88 @@ +'use client' + +import Image from "next/image" +import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/Card" +import Badge from "@/components/ui/Badge" +import { Award, BookOpen, Scale, Shield } from 'lucide-react' + +const teamMembers = [ + { + name: "Nomsa Mtungwa", + role: "Founding Partner – Corporate Law", + image: "https://images.pexels.com/photos/7640741/pexels-photo-7640741.jpeg?auto=compress&cs=tinysrgb&h=350", + badge: "30+ years", + specialty: "Mergers, acquisitions & corporate governance", + icon: Shield, + }, + { + name: "Thabo Moeketsi", + role: "Partner – Real Estate & Property", + image: "https://images.pexels.com/photos/7691691/pexels-photo-7691691.jpeg?auto=compress&cs=tinysrgb&h=350", + badge: "15+ years", + specialty: "Commercial leases, development agreements & property disputes", + icon: Scale, + }, + { + name: "Lindiwe Cele", + role: "Senior Associate – Business Litigation", + image: "https://images.pexels.com/photos/7640741/pexels-photo-7640741.jpeg?auto=compress&cs=tinysrgb&h=350", + badge: "12+ years", + specialty: "Shareholder disputes, contract litigation & arbitration", + icon: BookOpen, + }, +] + +export default function TeamSection() { + return ( +
+
+
+

Our Attorneys

+

+ Each partner at Mtungwa & Partners brings deep experience in a specific practice area, + ensuring you get expert counsel matched to your transaction or case. +

+
+
+ {teamMembers.map((member, i) => { + const Icon = member.icon + return ( + +
+ {member.name} +
+ +
+ {member.name} + + {member.badge} + +
+

{member.role}

+
+ +
+ +

{member.specialty}

+
+

+ Admitted: High Court of South Africa +

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