Industries.js
5.95 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
import Image from "next/image";
import React from "react";
import { Swiper, SwiperSlide } from "swiper/react";
import { Autoplay, Navigation } from "swiper/modules";
import { Col, Container, Row } from "react-bootstrap";
import Heading from "./Heading";
import Link from "next/link";
import SwiperNav from "./SwiperNav";
import { cleanImage } from "@/layout/imageHandling";
const industriesData = [
{
title: "Education",
subtitle: "INDUSTRIES",
description:
"As an expert in the Education sector, we understand that shaping minds is the foundation of a nation’s growth. Our extensive knowledge and experience allow us to provide unparalleled service.",
imageSrc: "/images/industry/education.png",
imageAlt: "image",
shapeSrc: "/images/shape/shape8.png",
shapeAlt: "image",
link: "/industry#education",
},
{
title: "Life Sciences",
subtitle: "INDUSTRIES",
description:
"Supporting the Life Sciences sector, we leverage our comprehensive understanding to deliver innovative solutions that enhance the finance & tax complications of healthcare sector.",
imageSrc: "/images/industry/life_science.webp",
imageAlt: "image",
shapeSrc: "/images/shape/shape8.png",
shapeAlt: "image",
link: "/industry#lifesciences",
},
{
title: "Technology",
subtitle: "INDUSTRIES",
description:
"From breakthroughs in software to cutting-edge technology, the Technology sector remains a key driver of innovation. Our expertise in finance equips us to provide strategic guidance and solutions tailored to the needs of this dynamic sector, ensuring the growth and financial success of our clients.",
imageSrc: "/images/industry/technology.png",
imageAlt: "image",
shapeSrc: "/images/shape/shape8.png",
shapeAlt: "image",
link: "/industry#technology",
},
{
title: "Hospitality",
subtitle: "INDUSTRIES",
description:
"A sector that embodies hospitality and welcomes all, Hospitality is the heart of many economies. Our expertise in finance ensures that these establishments run smoothly and efficiently.",
imageSrc: "/images/industry/hospitality.png",
imageAlt: "image",
shapeSrc: "/images/shape/shape8.png",
shapeAlt: "image",
link: "/industry#hospitality",
},
{
title: "Real Estate",
subtitle: "INDUSTRIES",
description:
" Unlocking financial potential in Real Estate with our expertise, we enable clients to navigate the complex market and ensure sustainable investments.",
imageSrc: "/images/industry/real-estate.png",
imageAlt: "image",
shapeSrc: "/images/shape/shape8.png",
shapeAlt: "image",
link: "/industry#realestate",
},
];
const Industries = ({ industry }) => {
// console.log(industry, "industry");
return (
<>
<div className="free-quote-area bg-color position-relative">
<Swiper
spaceBetween={30}
pagination={{ clickable: true }}
breakpoints={{
0: {
slidesPerView: 1,
},
576: {
slidesPerView: 1,
},
768: {
slidesPerView: 1,
},
992: {
slidesPerView: 1,
},
}}
autoplay={{
delay: 5000,
disableOnInteraction: true,
pauseOnMouseEnter: true,
}}
navigation={{
nextEl: ".custom-swiper-button-next",
prevEl: ".custom-swiper-button-prev",
}}
loop={true}
modules={[Navigation, Autoplay]}
className="industry-slides position-relative"
>
{industry?.Industry &&
industry?.Industry.map((industry, index) => (
<SwiperSlide className="single-partner-item" key={index}>
<Container>
<Row className="align-items-center">
<Col lg={5} md={12}>
<div className="free-quote-content">
<span className="sub-title">{industry?.Subtitle}</span>
<Heading
el="h2"
heading={industry.Title}
className="industry-title"
/>
<p>{industry?.Description}</p>
{industry?.CTA &&
industry?.CTA?.map((itemcta, index) => {
return (
<Link
href={itemcta?.URL ? itemcta?.URL : "#"}
className="default-btn-one"
key={`cta${index}`}
>
{itemcta?.text}
</Link>
);
})}
</div>
</Col>
<Col lg={7} md={12}>
<Image
src={cleanImage(industry?.Image?.url)}
alt={
industry?.alternativeText
? industry?.alternativeText
: "image"
}
width={1920}
height={1080}
className="img-fluid rounded-5 image"
/>
</Col>
</Row>
</Container>
<div className="shape3">
<Image
src="/images/shape/shape8.png"
alt="shape"
width={500}
height={500}
className="img-fluid image"
/>
</div>
</SwiperSlide>
))}
</Swiper>
<div className="cust_nav industry_nav swiper-nav text-center mt-md-4 mt-2">
{/* <SwiperNav /> */}
</div>
</div>
</>
);
};
export default Industries;