AdvisoryBoard.js
1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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;