"use client"; import Image from "next/legacy/image"; import Link from "next/link"; import { useCaseStudies } from "@/lib/hooks/useCaseStudy"; import { getImageUrl } from "@/lib/imageUtils"; const CaseItems = () => { const { caseStudies, loading: casesLoading } = useCaseStudies(); if (casesLoading) { return (

Loading case studies...

); } return (

Case Studies

Discover how we help enterprises solve complex challenges with secure, scalable solutions. Our case studies highlight real business outcomes accelerated delivery, reduced costs, improved reliability, and data-driven growth powered by modern cloud, AI, and platform engineering.

{caseStudies.map((caseStudy) => (
{caseStudy.title}
{caseStudy.category_name || 'Case Study'}

{caseStudy.title}

))} {caseStudies.length === 0 && (

No case studies found.

)}
); }; export default CaseItems;