diff --git a/src/components/sections/CaseStudiesSection.tsx b/src/components/sections/CaseStudiesSection.tsx new file mode 100644 index 0000000..962864f --- /dev/null +++ b/src/components/sections/CaseStudiesSection.tsx @@ -0,0 +1,63 @@ +import Image from "next/image" +import Link from "next/link" +import Button from "@/components/ui/Button" + +export default function CaseStudiesSection() { + const caseStudies = [ + { + id: "1", + title: "Commercial Real Estate Acquisition – R120M Portfolio", + description: "Represented a property developer in acquiring a mixed-use portfolio in Sandton, navigating complex zoning regulations and financing.", + imageUrl: "https://images.pexels.com/photos/16282318/pexels-photo-16282318.jpeg?auto=compress&cs=tinysrgb&h=350", + }, + { + id: "2", + title: "Shareholder Dispute – Tech Startup Exit", + description: "Achieved a favourable buy-out for minority shareholders in a high-growth tech company, preserving value through strategic negotiation.", + imageUrl: "https://images.pexels.com/photos/9700836/pexels-photo-9700836.jpeg?auto=compress&cs=tinysrgb&h=350", + }, + { + id: "3", + title: "Cross-Border Merger – Mining Sector", + description: "Advised on a cross-border merger between a South African mining firm and an Australian partner, handling regulatory approvals and BEE compliance.", + imageUrl: "https://images.pexels.com/photos/8939052/pexels-photo-8939052.jpeg?auto=compress&cs=tinysrgb&h=350", + }, + ] + + return ( +
+
+
+

Client Success Stories

+

+ Real results from our corporate, real estate, and litigation practice. +

+
+
+ {caseStudies.map((cs) => ( +
+
+ {cs.title} +
+
+

{cs.title}

+

{cs.description}

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