AdvisoryBoard.js 1.55 KB
import React from "react";
import Image from "next/image";

const AdvisoryBoard = () => {
  return (
    <>
      <div className="testimonial-area ptb-100 bglight">
        <div className="container">
          <div className="row align-items-center">
            <div className="col-lg-6 col-md-12">
              <div className="testimonial-content">
                <span className="sub-title">Advisory Board Member</span>
                <h2>CA Srinivasa Upadhya G</h2>

                <div className="testimonial-desc">
                  <p>
                    CA Srinivasa Upadhya G is practicing CA since 1980, having
                    over four decades of experience. He is an expert in the
                    field of audit, taxation, litigation and advisory with
                    clients spanning across industries. He is an authority in
                    the hospitality sector due to a vast number of clients
                    serviced in the sector over the years. He is currently the
                    Chief Advisor to the firm.
                  </p>
                </div>
              </div>
            </div>

            <div className="col-lg-6 col-md-6">
              <div className="testimonial-Image">
                <Image
                  src="/images/man.jpg"
                  alt="image"
                  className="img-fluid"
                  width={500}
                  height={500}
                />
              </div>
            </div>
          </div>
        </div>
      </div>
    </>
  );
};

export default AdvisoryBoard;