BaPage.js 5.66 KB
import PageBanner from "@/components/reuseables/PageBanner";
import ContentSection from "@/components/reuseables/ServicesContent";
import React from "react";
import { motion } from "framer-motion";
import {
  fadeIn,
  slideFromLeft,
  slideFromRight,
} from "@/components/reuseables/variants";
import { Container } from "react-bootstrap";
import MethodOne from "@/components/reuseables/services/MethodOne";
import Clientele from "@/components/reuseables/Clientele";
const banners = [
  {
    imageSrc: "/images/page-title-bg.jpg",
    pageTitle: "Client Servicing - BA ",
    homePageUrl: "/",
    homePageText: "Home",
    activePageText: "BA",
  },
  // Add more banners as needed
];
const BAData = [
  {
    subtitle: "Client Servicing",
    title: "Client Servicing - BA   ",
    paragraphs: [
      "At Advith Consulting, we guide businesses through the critical growth stages - Existence, Survival, Success, Take off & Maturity . Our advisory services are tailored to navigate each phase with strategic foresight and financial acumen, ensuring your business thrives at every turn. Partner with us for a journey of financial excellence.",
    ],
    imageSrc: "/images/about/people.jpg",
    imageAlt: "Client Servicing Image",
  },
  {
    subtitle: "About FC & CFO Services",
    title: "About FC & CFO Services",
    paragraphs: [
      "An idea is great only as long as it solves a problem. In solving a problem, an organisation and its founder go through multiple stages. Founders are often stuck in a balancing act, handling multiple stakeholders and their expectations.Through our Business Advisory engagements, we play the critical role of guiding organizations through their growth journey, providing strategic insights and actionable plans that align with their goals. We help management teams and founders navigate the complexities of each stage, from existence to maturity, ensuring they make informed decisions. Our expertise enables us to identify the strengths, weaknesses, opportunities and threats of organisations, ultimately supporting our clients in achieving their long-term vision while effectively balancing stakeholder expectations",
    ],
    imageSrc: "/images/home/knowledge.png",
    imageAlt: "FC & CFO Services Image",
  },
  {
    subtitle: "About FC & CFO Services",
    title: "About FC & CFO Services",
    paragraphs: [
      "McKinsey & Company has defined a matrix where they have arrived at 4 types of consulting - a neutral facilitator, a facilitative consultant, an observer or an expert. In Business Conuslting engagements, in addition to performing these roles, we also perform the role of a doer and an enabler, helping founders solve problems with their idea. ",
    ],
    imageSrc: "/images/home/knowledge.png",
    imageAlt: "FC & CFO Services Image",
  },
];

const sliderConfig = {
  spaceBetween: 20,
  slidesPerView: 5,
  showPagination: true,
  showAutoplay: true,
  autoplayDelay: 4000,
};
const MethodOneData = [
  {
    stepNumber: "01",
    img: "/images/shape/icon/discovery.png",
    title: "lorem",
    descr:
      "Lorem Ipsum is simply dummy text of the printing and typesetting industry",
    altText: "discovery-icon",
  },
  {
    stepNumber: "02",
    img: "/images/shape/icon/analysis.png",
    title: "lorem",
    descr: " Analyze past financial data to uncover trends and obtain insights",
    altText: "analysis-icon",
  },
  {
    stepNumber: "03",
    img: "/images/shape/icon/setup.png",
    title: "lorem",
    descr: " Establishing the Modus Operandi of the finance function",
    altText: "setup-icon",
  },
  {
    stepNumber: "04",
    img: "/images/shape/icon/execution.png",
    title: "lorem",
    descr: " Implement financial strategies and manage day-to-day operations ",
    altText: "execution-icon",
  },
  {
    stepNumber: "05",
    img: "/images/shape/icon/setup.png",
    title: "lorem",
    descr:
      " Reporting to the Management, Board of Directors, Investors as the case may be",
    altText: "setup-icon",
  },
  {
    stepNumber: "06",
    img: "/images/shape/icon/execution.png",
    title: "lorem",
    descr: "Continuous evaluation to make the process & reporting better",
    altText: "execution-icon",
  },
];

const partners = [
  {
    image: "/images/clientel/academic-city.svg",
    altText: "partner",
    link: "#",
  },
  {
    image: "/images/clientel/ADALVO.svg",
    altText: "partner",
    link: "#",
  },
  {
    image: "/images/clientel/RANDOX.svg",
    altText: "partner",
    link: "#",
  },
  {
    image: "/images/clientel/Relicare.svg",
    altText: "partner",
    link: "#",
  },
  {
    image: "/images/clientel/Relicare-1.svg",
    altText: "partner",
    link: "#",
  },
  {
    image: "/images/clientel/Sigma.svg",
    altText: "partner",
    link: "#",
  },
];
const BaPage = () => {
  return (
    <>
      <PageBanner banners={banners} />
      <div className="cfo-services-area pt-100">
        <Container>
          {BAData.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 2 - Nature of Engagements"
        descrption="Here are some key activities we focus on in our CFO services."
        sliderConfig={sliderConfig} // Pass the slider configuration here
      />
      <div className="ptb-100 bg-fafafa">
        <Clientele partners={partners} />
      </div>
    </>
  );
};

export default BaPage;