BaPage.js 3.65 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';
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 - CFO",
        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 BaPage = () => {
    return (
        <>
            <PageBanner banners={banners} />
            <div className="cfo-services-area ptb-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}
                            animation={
                                index % 2 === 0 ? slideFromLeft(0.5) : slideFromRight(0.4)

                            }
                        />
                    ))}
                </Container>
            </div>

        </>
    )
}

export default BaPage