-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.ts
37 lines (37 loc) · 1.08 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
export const jobs = [
{
id: 1,
title: "Frontend Developer",
description: "Comfortable with modern JS stack, experience with React and Redux.",
employment_type: "full_time",
technologies: ["React", "Javascript"]
},
{
id: 2,
title: "Node Developer",
description: "Comfortable with modern JS stack, experience with Node and Mongo.",
employment_type: "part_time",
technologies: ["Node", "Javascript"]
},
{
id: 3,
title: "FullStack JS Developer",
description: "Comfortable with modern JS stack, experience with React and Redux.",
employment_type: "full_time",
technologies: ["React", "Node", "Vue", "Javascript"]
},
{
id: 4,
title: "Frontend Developer",
description: "Comfortable with modern JS stack, experience with Vue and Vuex.",
employment_type: "remote",
technologies: ["Vue", "Javascript"]
},
{
id: 5,
title: "Backend Developer",
description: "Comfortable with Java stack, experience with Spring and PL/SQL.",
employment_type: "full_time",
technologies: ["Java", "Spring", "JSP"]
}
];