Education.js
7.4 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
import Heading from "@/components/reuseables/Heading";
import React from "react";
import { Col, Container, Row } from "react-bootstrap";
import { motion } from "framer-motion";
import { fadeIn, slideFromLeft } from "@/components/reuseables/variants";
import Image from "next/image";
import Clientele from "@/components/reuseables/Clientele";
const OurApproachData = [
{
title: "Education ",
subtitle: "Our Approach",
paragraphs: [
"FC & CFO Services at Advith Consulting LLP brings together specialists at different functional layers enabling finance operations in your organisation to function in an efficient manner. Depending upon the requirement of the business, our areas of focus range from streamling routine finance operations to ensuring compliances including taxation and corporate law and even to strategic, business finance & assurance, to provide a holistic approach to financial management. ",
],
imageSrc: "/images/about/people.jpg",
imageAlt: "Approch",
},
// Add more objects here if you have more content sections
];
const TransactionAdvisory = [
{
title: "Deal Advisory",
descr:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
},
{
title: "Merger & Acquisition",
descr:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
},
{
title: "Due Diligence",
descr:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
},
{
title: "Fund Raise Assistance",
descr:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
},
{
title: "Project Management ",
descr:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
},
];
const BusinessAdvisory = [
{
title: "Strategic Office ",
descr:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
},
{
title: "Taxation ",
descr:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
},
{
title: "Business Modelling ",
descr:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
},
{
title: "Family Business Structuring",
descr:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
},
];
const RiskAdvisory = [
{
title: "Establishing Process & Internal Controls",
descr:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
},
{
title: "Review of Internal Controls ",
descr:
"Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
},
];
const partners = [
{
id: 1,
image: "/images/partner/partner1.png",
altText: "partner",
link: "#",
},
{
id: 2,
image: "/images/partner/partner2.png",
altText: "partner",
link: "#",
},
{
id: 3,
image: "/images/partner/partner1.png",
altText: "partner",
link: "#",
},
{
id: 4,
image: "/images/partner/partner2.png",
altText: "partner",
link: "#",
},
{
id: 5,
image: "/images/partner/partner1.png",
altText: "partner",
link: "#",
},
];
const Education = () => {
return (
<>
<div className="our-approch ptb-100">
<Container>
{OurApproachData.map((item) => (
<Row className="align-items-center" key={item.id}>
<Col lg={6} md={12}>
<div className="what-we-do-text">
<span className="sub-title">{item.subtitle}</span>
<Heading el="h2" heading={item.title} className="h2" />
{item.paragraphs.map((paragraph, index) => (
<p key={index}>{paragraph}</p>
))}
</div>
</Col>
<Col lg={6} md={12}>
<div className="what-we-do-img">
<motion.div
variants={fadeIn(0.4)}
initial={"hidden"}
whileInView={"show"}
viewport={{ once: false, amount: 0.2 }}
>
<Image
src={item.imageSrc}
alt={item.imageAlt}
layout="fill"
className="img-fluid image"
/>
</motion.div>
</div>
</Col>
</Row>
))}
</Container>
</div>
<section className="cfo-services pb-100 pt-50">
<Container>
<div className="section-title">
<span className="sub-title">What we do? - CFO Services</span>
<Heading el="h2" heading="Transaction Advisory" />
</div>
<Row className="justify-content-center">
{TransactionAdvisory.map((card, index) => (
<Col md={6} lg={3} xl={4} key={index}>
<motion.div
variants={slideFromLeft(0.5 * index)}
initial={"hidden"}
whileInView={"show"}
viewport={{ once: false, amount: 0.4 }}
>
<div className="method-card">
<div className="method-title">{card.title}</div>
<div className="method-descr">{card.descr}</div>
</div>
</motion.div>
</Col>
))}
</Row>
</Container>
</section>
<section className="business-advisory pb-100 pt-50">
<Container>
<div className="section-title">
<span className="sub-title">What we do? - CFO Services</span>
<Heading el="h2" heading="Business Advisory" />
</div>
<Row className="justify-content-center">
{BusinessAdvisory.map((card, index) => (
<Col md={6} lg={4} xl={4} key={index}>
<motion.div
variants={slideFromLeft(0.5 * index)}
initial={"hidden"}
whileInView={"show"}
viewport={{ once: false, amount: 0.4 }}
>
<div className="method-card">
<div className="method-title">{card.title}</div>
<div className="method-descr">{card.descr}</div>
</div>
</motion.div>
</Col>
))}
</Row>
</Container>
</section>
<section className="business-advisory pb-100 pt-50">
<Container>
<div className="section-title">
<span className="sub-title">What we do? - CFO Services</span>
<Heading el="h2" heading="Business Advisory" />
</div>
<Row className="justify-content-center">
{RiskAdvisory.map((card, index) => (
<Col md={6} lg={6} xl={6} key={index}>
<motion.div
variants={slideFromLeft(0.5 * index)}
initial={"hidden"}
whileInView={"show"}
viewport={{ once: false, amount: 0.4 }}
>
<div className="method-card">
<div className="method-title">{card.title}</div>
<div className="method-descr">{card.descr}</div>
</div>
</motion.div>
</Col>
))}
</Row>
</Container>
</section>
</>
);
};
export default Education;