-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdata_roles.js
More file actions
25 lines (24 loc) · 920 Bytes
/
data_roles.js
File metadata and controls
25 lines (24 loc) · 920 Bytes
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
const roles_data = {
'President': {
description: 'Cordinates with all department,Ensures the Proper Allocation of Resources and all Departments meet their Goals.'
},
'Vice President': {
description: 'Cordinates with President ,Ensures the Proper Allocation of Resources, and all Departments meet their Goals.'
},
'Technical Head': {
description: 'Manages the Technical Aspect of Events, Mentors Students, and Works on Community-Driven Projects.'
},
'Event Head': {
description: 'Organises Events and Workshops.'
},
'Media Head': {
description: 'Designs, Implement and Execute the Publicity Media Campaigns.'
},
'Marketing Head': {
description: 'Manages Company Marketing and Communications Strategies, as well as Overall Branding and Image.'
},
'Mentor': {
description: 'Mentor Student Provide them Valuable Advice and Guidance.'
},
};
export default roles_data;