-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.ts
61 lines (59 loc) · 1.22 KB
/
data.ts
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
export interface Job {
id: number;
title: string;
image: string;
salary: string;
location: string;
jobtype: string;
}
const JobData: Job[] = [
{
id: 1,
title: "Software Engineer",
image: "/images/c1.png",
salary: "35k - 40k",
location: "London,Uk",
jobtype: "full time",
},
{
id: 2,
title: "DevOps Engineer",
image: "/images/c2.png",
salary: "35k - 40k",
location: "Pakistan",
jobtype: "full time",
},
{
id: 3,
title: "Fronetend Engineer",
image: "/images/c3.png",
salary: "45k - 50k",
location: "Kolkata,India",
jobtype: "full time",
},
{
id: 4,
title: "Backend Developer",
image: "/images/c4.png",
salary: "25k - 30k",
location: "USA",
jobtype: "Part time",
},
{
id: 5,
title: "Fullstack Developer",
image: "/images/c5.png",
salary: "55k - 60k",
location: "Australia",
jobtype: "full time",
},
{
id: 6,
title: "Web Designer",
image: "/images/c6.png",
salary: "25k - 30k",
location: "Canada",
jobtype: "Freelance",
},
];
export default JobData;