TaPage.js 2.54 KB
import React from "react";
import PageBanner from "@/components/reuseables/PageBanner";
import ContentSection from "@/components/reuseables/ServicesContent";
import { Container } from "react-bootstrap";
import { motion } from "framer-motion";
import {
  slideFromLeft,
  slideFromRight,
} from "@/components/reuseables/variants";
import MethodOne from "@/components/reuseables/services/MethodOne";
import { MethodTwo } from "@/components/reuseables/services/MethodTwo";

const banners = [
  {
    imageSrc: "/images/page-title-bg.jpg",
    pageTitle: "Client Servicing - TA ",
    homePageUrl: "/",
    homePageText: "Home",
    activePageText: "TA",
  },
  // Add more banners as needed
];
const CFOData = [
  {
    subtitle: "Client Servicing",
    title: "Client Servicing - TA",
    paragraphs: [
      "At Advith Consulting, we don’t see deals as isolated events but rather as multiple related events forming part of a dynamic lifecycle. Our approach encompasses strategy, project management & execution and post transaction support. Our services include Deal Structuring, Mergers & Acquisitions, Due Diligence, Valuations, Cross Border Transactions, Transfer Pricing Advisory, Fund Raise Management, etc",
    ],
    imageSrc: "/images/home/knowledge.png",
    imageAlt: "Client Servicing Image",
  },
  {
    subtitle: "About FC & CFO Services",
    title: "About FC & CFO Services",
    paragraphs: [
      "Make or break events for an organisation, a transaction is an event that is likey to impact the operations, growth and scale of organisations in a siginficant manner.We bring together experts at different functional layers in order to ensure that you receive a 360 degree perspective on your transaction.",
    ],
    imageSrc: "/images/home/knowledge.png",
    imageAlt: "FC & CFO Services Image",
  },
  // Add more objects here if needed
];
const TaPage = () => {
  return (
    <>
      <PageBanner banners={banners} />
      <div className="what-we-do-area ptb-100">
        <Container>
          {CFOData.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>
      <MethodOne />
      <MethodTwo />
    </>
  );
};

export default TaPage;