HowWeDoIt.js 3.38 KB
import Heading from '@/components/reuseables/Heading'
import Image from 'next/image'
import React from 'react'
import { Col, Container, Row } from 'react-bootstrap'

const HowWeDoIt = () => {

    const data = [
        {
            subTitle: "Step 1",
            title: "Step 1 Discovery",
            desc: "Assess the business model, industry context, and internal processes",
            image: "/images/client-service/cfo.webp",
        },
        {
            subTitle: "Step 2",
            title: "Step 1 Discovery",
            desc: "Assess the business model, industry context, and internal processes",
            image: "/images/client-service/Client_Servicing-CFO.webp",
        },
        {
            subTitle: "Step 1",
            title: "Step 1 Discovery",
            desc: "Assess the business model, industry context, and internal processes",
            image: "/images/client-service/cfo.webp",
        },
        {
            subTitle: "Step 1",
            title: "Step 1 Discovery",
            desc: "Assess the business model, industry context, and internal processes",
            image: "/images/client-service/cfo.webp",
        },
        {
            subTitle: "Step 1",
            title: "Step 1 Discovery",
            desc: "Assess the business model, industry context, and internal processes",
            image: "/images/client-service/cfo.webp",
        },
        {
            subTitle: "Step 1",
            title: "Step 1 Discovery",
            desc: "Assess the business model, industry context, and internal processes Assess the business model, industry context, and internal processes Assess the business model, industry context, and internal processes",
            image: "/images/client-service/cfo.webp",
        },
    ]

    return (
        <section className="HowWeDoIt-section ptb-100">
            <Container>
                <div className="section-title">
                    <span className="sub-title">{""}</span>
                    <Heading el="h2" heading={"How we do it?"} />
                </div>
                <p className=" text-center text-black mb-4 mb-lg-5">{"Here are some key activities we focus on in our CFO services."}</p>
                <Row className='row-gap-4 h-auto justify-content-center'>
                    {
                        data && data.map((item, index) => (
                            <Col className='' lg={4} md={6} key={index}>
                                <div className='HowWeDoIt_card h-100'>
                                    <h2>{item?.subTitle}</h2>
                                    <Image
                                        aria-hidden="true"
                                        alt={"image"}
                                        src={item?.image}
                                        width={1000}
                                        height={1000}
                                        className="img-fluid"
                                    />
                                    <div className='HowWeDoIt_card_content'>
                                        <h4>{item?.title}</h4>
                                        <p>{item?.desc}</p>
                                    </div>
                                </div>
                            </Col>
                        ))
                    }
                </Row>
            </Container>
        </section>
    )
}

export default HowWeDoIt