File size: 1,577 Bytes
8b105ad
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
const jobData = [
    {
      id: 1,
      title: "Head of Sales",
      jobType: "Hybrid ",
      employmentType: "Full Time",
      status: "Opened",
      vacancies: 1,
      description: "Lead the sales team to drive growth, develop strategies, and manage key client relationships for business success.",
    },
    {
      id: 2,
      title: "Web Designer & Developer",
      jobType: "Hybrid ",
      employmentType: "Full Time",
      status: "Closed",
      vacancies: 0,
      description: "Design and develop websites, ensuring a smooth user experience while collaborating with product and design teams.",
    },
    {
      id: 3,
      title: "Senior Software Developer",
      jobType: "Onsite",
      employmentType: "Full Time",
      status: "Closed",
      vacancies: 0,
      description: "Develop robust software solutions, write efficient code, and mentor junior developers in a fast-paced environment.",
    },
    {
      id: 4,
      title: "System Admin",
      jobType: "Hybrid ",
      employmentType: "Full Time",
      status: "Opened",
      vacancies: 1,
      description: "Maintain and optimize IT infrastructure, ensuring optimal system performance and quickly addressing any technical issues.",
    },
    {
      id: 5,
      title: "Scientific Curators",
      jobType: "Hybrid",
      employmentType: "Full Time",
      status: "Opened",
      vacancies: 5,
      description: "Curate scientific content, collaborate with researchers, and contribute to the development of groundbreaking projects.",
    },
  ];
  
export default jobData;