diff --git a/src/components/sections/CaseStudiesSection.tsx b/src/components/sections/CaseStudiesSection.tsx new file mode 100644 index 0000000..360e945 --- /dev/null +++ b/src/components/sections/CaseStudiesSection.tsx @@ -0,0 +1,78 @@ +import Image from "next/image" +import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/Card" + +export default function CaseStudiesSection() { + const studies = [ + { + image: "https://images.pexels.com/photos/12955837/pexels-photo-12955837.jpeg?auto=compress&cs=tinysrgb&h=350", + industry: "Construction & Infrastructure", + problem: "Shareholder deadlock in a R200 million joint venture", + result: "Reached a mediated exit with a 45% valuation increase for our client within 6 months.", + buttonLabel: "Read case study", + }, + { + image: "https://images.pexels.com/photos/12955837/pexels-photo-12955837.jpeg?auto=compress&cs=tinysrgb&h=350", + industry: "Real Estate Investment", + problem: "Complex title dispute over a prime Sandton commercial property", + result: "Resolved through the Land Claims Court, securing full ownership and a R15 million compensation.", + buttonLabel: "Read case study", + }, + { + image: "https://images.pexels.com/photos/12955837/pexels-photo-12955837.jpeg?auto=compress&cs=tinysrgb&h=350", + industry: "Manufacturing & Export", + problem: "Breach of international supply contract causing R8 million loss", + result: "Won arbitration in South Africa and enforced award in the UK within 14 months.", + buttonLabel: "Read case study", + }, + ] + + return ( +
+
+ + Client Results + +

+ Transformative Outcomes We've Delivered +

+
+ {studies.map((study, i) => ( + +
+ {`Case +
+ + + {study.industry} + + + {study.problem} + + + +

+ Result: {study.result} +

+ + {study.buttonLabel} → + +
+
+ ))} +
+
+
+ ) +} \ No newline at end of file