From 37c4d97ac0aeb96aaf66f847d06eba3f2c94a0e7 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 29 Jun 2026 13:29:45 +0000 Subject: [PATCH] Bob AI: Add dedicated case studies section to showcase ROI --- src/pages/HomePage.tsx | 4 +- src/pages/HomePage/sections/CaseStudies.tsx | 78 +++++++++++++++++++++ 2 files changed, 81 insertions(+), 1 deletion(-) create mode 100644 src/pages/HomePage/sections/CaseStudies.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index df703ac..26b9fe9 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -15,7 +15,8 @@ import PricingSection from './HomePage/sections/Pricing'; import ContactSection from './HomePage/sections/Contact'; -import TrustedBySection from './HomePage/sections/TrustedBy';export default function HomePage(): React.JSX.Element { +import TrustedBySection from './HomePage/sections/TrustedBy'; +import CaseStudiesSection from './HomePage/sections/CaseStudies';export default function HomePage(): React.JSX.Element { return ( <> @@ -30,6 +31,7 @@ import TrustedBySection from './HomePage/sections/TrustedBy';export default func + diff --git a/src/pages/HomePage/sections/CaseStudies.tsx b/src/pages/HomePage/sections/CaseStudies.tsx new file mode 100644 index 0000000..f59aca8 --- /dev/null +++ b/src/pages/HomePage/sections/CaseStudies.tsx @@ -0,0 +1,78 @@ +import { motion } from "motion/react" +import TextAnimation from "@/components/ui/TextAnimation" +import ScrollReveal from "@/components/ui/ScrollReveal" +import ImageOrVideo from "@/components/ui/ImageOrVideo" +import Tag from "@/components/ui/Tag" + +export default function CaseStudies() { + const cases = [ + { + title: "50% Reduction in Downtime for Riyadh Plastics", + description: "By utilizing MADAR's rapid deployment of verified technicians, Riyadh Plastics minimized their machine downtime and saved over 200,000 SAR in lost production.", + imageSrc: "https://picsum.photos/seed/429735176/1200/800", + tags: ["Manufacturing", "ROI: 200k SAR", "Downtime"] + }, + { + title: "3x Revenue Growth for Al-Jubail Maintenance Co.", + description: "A local service provider expanded their client base across the Eastern Province, leveraging our national coverage to secure long-term contracts.", + imageSrc: "https://picsum.photos/seed/733726084/1200/800", + tags: ["Service Provider", "Growth: 300%", "Expansion"] + }, + { + title: "Optimized Spare Parts Sourcing for Jeddah Steel", + description: "Jeddah Steel streamlined their procurement process, reducing spare parts delivery times by 40% and cutting inventory holding costs.", + imageSrc: "https://picsum.photos/seed/1902011918/1200/800", + tags: ["Procurement", "Efficiency: +40%", "Logistics"] + } + ]; + + return ( +
+
+
+ + + + + +

+ See how MADAR is transforming maintenance and operations for leading factories and service providers across the Kingdom. +

+
+
+ +
+ {cases.map((item, index) => ( + +
+
+ +
+
+
+ {item.tags.map((tag, i) => ( + + {tag} + + ))} +
+

{item.title}

+

{item.description}

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