RaPage.js 6.45 KB
import Clientele from "@/components/reuseables/Clientele";
import PageBanner from "@/components/reuseables/PageBanner";
import MethodOne from "@/components/reuseables/services/MethodOne";
import MethodTwoSection from "@/components/reuseables/services/MethodTwo";
import ContentSection from "@/components/reuseables/ServicesContent";

import React from "react";
import { Container } from "react-bootstrap";

const banners = [
  {
    imageSrc: "/images/page-title-bg.jpg",
    pageTitle: "Client Servicing - RA ",
    homePageUrl: "/",
    homePageText: "Home",
    activePageText: "RA",
  },
  // Add more banners as needed
];

const RAData = [
  {
    subtitle: "Client Servicing",
    title: "Client Servicing - CFO",
    paragraphs: [
      "As businesses grow and expand their footprint, an area that is often neglected is the requirement to bring in discipline in areas of finance, human resource management operations. At Advith Consulting, we follow a 4-step EASE Approach. E – Understand existing processes , A – Analyze the gaps S – Set up SOP’s , E – Effective Implementation ",
    ],
    imageSrc: "/images/about/people.jpg",
    imageAlt: "Client Servicing Image",
  },
  {
    subtitle: "About FC & CFO Services",
    title: "About FC & CFO Services",
    paragraphs: [
      "Often, it is not until something goes wrong that an organisation realises that it is has ineffective internal controls. Further, there is also a misconception among organisations that internal controls are needed only to satisy the statutory auditor.  Strong internal controls play a crucial role in the success of any organisation. They enhance efficiency, ensure compliance, streamline operations & facilitate growth. Irrespective of the size of your organisation,  defining processes, identifying risks & establishing controls are essential. At Advith, we understand the business of the entity and build strong yet agile processes to ensure that they stand the test of time. ",
    ],
    imageSrc: "/images/home/knowledge.png",
    imageAlt: "FC & CFO Services Image",
  },
];
const sliderConfig = {
  spaceBetween: 20,
  slidesPerView: 4,
  showPagination: true,
  showAutoplay: true,
  autoplayDelay: 4000,
};
const MethodOneData = [
  {
    stepNumber: "01",
    img: "/images/shape/icon/discovery.png",
    title: "E – Understand existing processes",
    descr:
      "Understand the business of the entity & identify the requirements of the entity with respect to the finance function",
    altText: "discovery-icon",
  },
  {
    stepNumber: "02",
    img: "/images/shape/icon/analysis.png",
    title: "A – Analyze the gaps ",
    descr: " Analyze past financial data to uncover trends and obtain insights",
    altText: "analysis-icon",
  },
  {
    stepNumber: "03",
    img: "/images/shape/icon/setup.png",
    title: "S – Set up SOP’s ",
    descr: " Establishing the Modus Operandi of the finance function",
    altText: "setup-icon",
  },
  {
    stepNumber: "04",
    img: "/images/shape/icon/execution.png",
    title: "E – Effective Implementation",
    descr: " Implement financial strategies and manage day-to-day operations ",
    altText: "execution-icon",
  },
];

const methodTwoData = [
  {
    img: "/images/services/cfo/activity/recurring.png",
    title: "Understanding Common Terms",
    descr:
      "By establishing a common vocabulary, it promotes consistency, minimizes ambiguity, and enhances communication, thereby facilitating accurate interpretation and execution of the procedures outlined in the SOP.",
  },
  {
    img: "/images/services/cfo/activity/monthly.png",
    title: "Organisation Structure",
    descr:
      "This matrix outlines reporting relationships, hierarchical structures, and communication channels among different departments or personnel involved in the SOP processes.",
  },
  {
    img: "/images/services/cfo/activity/quarterly.png",
    title: "Process Flow Chart & Detailed Process Notes:",
    descr:
      "A flow  provides a visual representation of the sequential steps in the process. The detailed process notes that accompany the flow chart provide a more in-depth explanation of each step in the process",
  },
  {
    img: "/images/services/cfo/activity/annual.png",
    title: "Risk Control Matrix:",
    descr:
      "Risks associated with each step in the process are Controls may be categorized as System (automated), Manual (human intervention), or Hybrid (combination of both). ",
  },
  {
    img: "/images/services/cfo/activity/need.png",
    title: "Version Control",
    descr:
      "With identifiable version numbers, dates, and authorship details, it enhances accountability and transparency during audits. Effective version control streamlines collaboration, allowing multiple contributors to work simultaneously.",
  },
];
const partners = [
  {
    image: "/images/clientel/adsyndicate.svg",
    altText: "partner",
    link: "#",
  },
  {
    image: "/images/clientel/APISERO.svg",
    altText: "partner",
    link: "#",
  },
  {
    image: "/images/clientel/Bighaat.svg",
    altText: "partner",
    link: "#",
  },
  {
    image: "/images/clientel/CRESTA.svg",
    altText: "partner",
    link: "#",
  },
  {
    image: "/images/clientel/Encee.svg",
    altText: "partner",
    link: "#",
  },
];

const RaPage = () => {
  return (
    <>
      <PageBanner banners={banners} />
      <div className="cfo-services-area ptb-100">
        <Container>
          {RAData.map((item, index) => (
            <ContentSection
              key={item.id}
              subtitle={item.subtitle}
              title={item.title}
              paragraphs={item.paragraphs}
              imageSrc={item.imageSrc}
              imageAlt={item.imageAlt}
              reverse={index % 2 !== 0}
            />
          ))}
        </Container>
      </div>
      <MethodOne
        data={MethodOneData}
        sectionTitle="Elements in CFO Services"
        heading="Methodology 1 - How we do it? "
        descrption="Here are some key activities we focus on in our CFO services."
        sliderConfig={sliderConfig} // Pass the slider configuration here
      />

      <MethodTwoSection
        sectionTitle="Elements in CFO Services - Option 2"
        subTitle="Methodology 2 - How we do it?"
        methodData={methodTwoData}
        slidesPerView={5}
        spaceBetween={20}
        autoplayDelay={4000}
        showPagination={true}
        showAutoplay={true}
      />
      <div className="ptb-100 bg-fafafa">
        <Clientele partners={partners} />
      </div>
    </>
  );
};

export default RaPage;