From b53c1aba54c557d9164296bd722c57ec7f78ee50 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Thu, 4 Jun 2026 11:25:16 +0000 Subject: [PATCH] Deploy --- .../sections/PracticeAreasSection.tsx | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 src/components/sections/PracticeAreasSection.tsx diff --git a/src/components/sections/PracticeAreasSection.tsx b/src/components/sections/PracticeAreasSection.tsx new file mode 100644 index 0000000..283768e --- /dev/null +++ b/src/components/sections/PracticeAreasSection.tsx @@ -0,0 +1,59 @@ +import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/Card' +import { Building2, FileText, Handshake, Scale } from 'lucide-react' + +export default function PracticeAreasSection() { + const areas = [ + { + icon: Scale, + title: 'Corporate Law', + description: 'Mergers, acquisitions, corporate governance, and BBBEE structuring under the South African Companies Act. We guide boards through regulatory compliance and shareholder agreements.' + }, + { + icon: Building2, + title: 'Real Estate', + description: 'Commercial property transactions, lease negotiations, title due diligence, and development finance. Our team handles conveyancing for Sandton and national portfolios.' + }, + { + icon: FileText, + title: 'Business Litigation', + description: 'Commercial dispute resolution, arbitration, mediation, and litigation. We protect business owners in contract disputes, shareholder conflicts, and insolvency matters.' + }, + { + icon: Handshake, + title: 'Tax & Regulatory', + description: 'Tax planning, transfer pricing, VAT structuring, and regulatory compliance. We advise on BEE ownership structures and cross-border investment into South Africa.' + } + ] + + return ( +
+
+
+

Our Expertise

+

Practice Areas

+

+ Targeted legal services for corporate clients, real estate investors, and business owners across South Africa. +

+
+
+ {areas.map((area, i) => { + const Icon = area.icon + return ( + + +
+ +
+ {area.title} +
+ +

{area.description}

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