AdvisoryBoard.js
3.1 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import React from "react";
import Image from "next/image";
const advisoryBoardData = [
{
image: "/images/man.jpg",
name: "CA Srinivasa Upadhya G",
title: "Advisory Board Member",
description: `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.`,
},
{
image: "/images/man.jpg",
name: "CA Sundaresha A.S",
title: "Advisory Board Member",
description: `CA Sundaresha A.S qualified as a CA in 1978. He is a founder partner of CA firm's M/s Sundaresh & Sridhar (1980), M/s Sundaresha & Associates (1997) and M/s ASRMP & Co (2018). He is a pioneer & leading in representation of Income Tax Litigation matters, particularly in the field of Search & Seizure cases, Corporate cases, Transfer Pricing cases, Individual Entrepreneurs, Small Business houses, Firms & HUF.`,
},
];
const AdvisoryBoard = () => {
return (
<>
<div className="testimonial-area ptb-100">
<div className="container">
{advisoryBoardData.map((member, index) => (
<div className="row align-items-center" key={index}>
{index % 2 === 0 ? (
<>
<div className="col-lg-6 col-md-6">
<div className="testimonial-Image">
<Image
src={member.image}
alt={member.name}
className="img-fluid"
width={500}
height={500}
/>
</div>
</div>
<div className="col-lg-6 col-md-12">
<div className="testimonial-content">
<span className="sub-title">{member.title}</span>
<h2>{member.name}</h2>
<p>{member.description}</p>
</div>
</div>
</>
) : (
<>
<div className="col-lg-6 col-md-12">
<div className="testimonial-content">
<span className="sub-title">{member.title}</span>
<h2>{member.name}</h2>
<p>{member.description}</p>
</div>
</div>
<div className="col-lg-6 col-md-6">
<div className="testimonial-Image">
<Image
src={member.image}
alt={member.name}
className="img-fluid"
width={500}
height={500}
/>
</div>
</div>
</>
)}
</div>
))}
</div>
</div>
</>
);
};
export default AdvisoryBoard;