-
Notifications
You must be signed in to change notification settings - Fork 0
/
dataBase.ts
203 lines (202 loc) · 5.57 KB
/
dataBase.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
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
export const jobListings = [
{
id: 1,
title: "Content Writer",
company: "Techie Blog",
location: "Dhaka",
type: "Part-time",
salary: "5000 BDT/month",
description: "Looking for a creative content writer to write tech-related articles.",
skillsRequired: ["Writing", "SEO", "Research"],
},
{
id: 2,
title: "Graphic Designer",
company: "Design Hub",
location: "Chittagong",
type: "Remote",
salary: "3000 BDT/project",
description: "Design posters and banners for social media platforms.",
skillsRequired: ["Photoshop", "Illustrator"],
},
{
id: 3,
title: "Data Entry Operator",
company: "Fast Solutions",
location: "Dhaka",
type: "Part-time",
salary: "4000 BDT/month",
description: "Perform data entry tasks and maintain databases.",
skillsRequired: ["Typing", "Excel"],
},
{
id: 4,
title: "Social Media Manager",
company: "Buzz Media",
location: "Sylhet",
type: "Part-time",
salary: "6000 BDT/month",
description: "Manage and grow the company’s social media presence.",
skillsRequired: ["Social Media", "Content Creation"],
},
{
id: 5,
title: "Tutor - Mathematics",
company: "Private Client",
location: "Dhaka",
type: "Part-time",
salary: "4000 BDT/month",
description: "Provide math tutoring to high school students.",
skillsRequired: ["Mathematics", "Teaching"],
},
{
id: 6,
title: "Web Developer",
company: "StartUp Ltd.",
location: "Remote",
type: "Contract",
salary: "8000 BDT/project",
description: "Develop a responsive company website.",
skillsRequired: ["HTML", "CSS", "JavaScript"],
},
{
id: 7,
title: "Customer Service Agent",
company: "Easy Help",
location: "Dhaka",
type: "Part-time",
salary: "5000 BDT/month",
description: "Assist customers with inquiries via phone and email.",
skillsRequired: ["Communication", "Problem Solving"],
},
{
id: 8,
title: "Video Editor",
company: "Creative Studio",
location: "Remote",
type: "Freelance",
salary: "4000 BDT/project",
description: "Edit promotional videos for social media campaigns.",
skillsRequired: ["Video Editing", "Premiere Pro"],
},
{
id: 9,
title: "Event Coordinator",
company: "Eventify",
location: "Rajshahi",
type: "Part-time",
salary: "6000 BDT/month",
description: "Help coordinate and manage small-scale events.",
skillsRequired: ["Event Planning", "Coordination"],
},
{
id: 10,
title: "App Tester",
company: "Mobile Dev",
location: "Remote",
type: "Part-time",
salary: "3000 BDT/project",
description: "Test mobile applications for bugs and provide feedback.",
skillsRequired: ["App Testing", "Bug Reporting"],
},
{
id: 11,
title: "SEO Specialist",
company: "Digital Marketing Co.",
location: "Khulna",
type: "Part-time",
salary: "7000 BDT/month",
description: "Improve the company’s website ranking through SEO strategies.",
skillsRequired: ["SEO", "Google Analytics"],
},
{
id: 12,
title: "Delivery Rider",
company: "Quick Parcel",
location: "Barishal",
type: "Part-time",
salary: "4000 BDT/month",
description: "Deliver packages within the city area.",
skillsRequired: ["Motorcycle License", "Time Management"],
},
{
id: 13,
title: "Translator (English-Bangla)",
company: "Global Docs",
location: "Remote",
type: "Freelance",
salary: "5000 BDT/project",
description: "Translate documents from English to Bangla.",
skillsRequired: ["Translation", "English", "Bangla"],
},
{
id: 14,
title: "Sales Associate",
company: "Retail Pro",
location: "Dhaka",
type: "Part-time",
salary: "4500 BDT/month",
description: "Assist customers in-store and manage inventory.",
skillsRequired: ["Sales", "Customer Service"],
},
{
id: 15,
title: "Photography Assistant",
company: "Lens Art",
location: "Chittagong",
type: "Part-time",
salary: "3000 BDT/event",
description: "Assist the photographer during events.",
skillsRequired: ["Photography", "Creativity"],
},
{
id: 16,
title: "UI/UX Designer",
company: "Innovative Designs",
location: "Remote",
type: "Freelance",
salary: "6000 BDT/project",
description: "Design user-friendly interfaces for websites and apps.",
skillsRequired: ["UI/UX", "Figma", "Adobe XD"],
},
{
id: 17,
title: "Fitness Trainer",
company: "Fit Life",
location: "Sylhet",
type: "Part-time",
salary: "5000 BDT/month",
description: "Train clients in fitness routines and provide health guidance.",
skillsRequired: ["Fitness", "Training"],
},
{
id: 18,
title: "Content Moderator",
company: "SocialBuzz",
location: "Remote",
type: "Part-time",
salary: "4000 BDT/month",
description: "Moderate content on social media platforms.",
skillsRequired: ["Moderation", "Attention to Detail"],
},
{
id: 19,
title: "Research Assistant",
company: "Edu Research",
location: "Dhaka",
type: "Part-time",
salary: "6000 BDT/month",
description: "Assist with academic research and data collection.",
skillsRequired: ["Research", "Data Analysis"],
},
{
id: 20,
title: "Virtual Assistant",
company: "Online Services",
location: "Remote",
type: "Part-time",
salary: "3500 BDT/month",
description: "Manage emails, schedules, and administrative tasks for clients.",
skillsRequired: ["Communication", "Time Management"],
}
];