CareerListing.js
3.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
import Heading from "@/components/reuseables/Heading";
import Link from "next/link";
import React from "react";
const services = [
{
id: 1,
serviceIcon: "icon ri-briefcase-line",
serviceTitle: "Manager - Direct Tax Services",
serviceShortDescription:
"Would be involved in the Firm’s effort towards reading, researching, content creation and content dissemination in various modes Would be involved in ",
location: "Bangalore South, India",
yearofExperience: "1-3 years",
Date: "Jul 23, 2022",
jobtype: "Full Time",
serviceDetailsUrl: "/career/detail",
},
{
id: 2,
serviceIcon: "icon ri-briefcase-line",
serviceTitle: "Manager - Direct Tax Services",
serviceShortDescription:
"Would be involved in the Firm’s effort towards reading, researching, content creation and content dissemination in various modes Would be involved in ",
location: "Bangalore South, India",
yearofExperience: "1-3 years",
Date: "Jul 23, 2022",
jobtype: "Full Time",
serviceDetailsUrl: "/career/detail",
},
{
id: 3,
serviceIcon: "icon ri-briefcase-line",
serviceTitle: "Manager - Direct Tax Services",
serviceShortDescription:
"Would be involved in the Firm’s effort towards reading, researching, content creation and content dissemination in various modes Would be involved in ",
location: "Bangalore South, India",
yearofExperience: "1-3 years",
Date: "Jul 23, 2022",
jobtype: "Full Time",
serviceDetailsUrl: "/career/detail",
},
];
const CareerListing = () => {
return (
<>
<div className="services-area ptb-70 career-details">
<div className="container">
<div className="section-title">
<span className="sub-title">Current Openings</span>
<Heading heading={"Join us"} />
<p>
At Advith Consulting, we believe in creating a long term career
for those work with us.
</p>
</div>
<div className="row align-items-center">
{services &&
services.map((service) => (
<div className="col-lg-4 col-sm-6 col-md-6" key={service.id}>
<div className="services-box">
<div className="d-flex align-items-center">
<i className={service.serviceIcon}></i>
<h3>
<Link href={service.serviceDetailsUrl}>
{service.serviceTitle}
</Link>
</h3>
</div>
<div className="d-flex justify-content-between">
<p className="location">{service.location} </p>
<p className="yearofExperience">
{service.yearofExperience}
</p>
</div>
<p className="mt-0 career-shortdesc">
{service.serviceShortDescription}
</p>
<div className="d-flex justify-content-between">
<p className="date">{service.Date} </p>
<p className="job-type">
{service.jobtype}
</p>
</div>
</div>
</div>
))}
</div>
</div>
</div>
</>
);
};
export default CareerListing;