You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib/jobs.ts
+17-35Lines changed: 17 additions & 35 deletions
Original file line number
Diff line number
Diff line change
@@ -18,25 +18,27 @@ export type Job = {
18
18
footnotes?: JobFootnote[];
19
19
};
20
20
21
+
constCOMMON_BENEFITS: JobBenefitItem[]=[
22
+
{text: "Discounts in book fairs"},
23
+
{
24
+
text: "Priority and discounts in joining our exclusive",
25
+
subPoints: [
26
+
"Study tours, seminars",
27
+
"Guest lectures from prestigious scholars",
28
+
"International youth conference",
29
+
"Summer opportunities at ALPHA Education",
30
+
"And many more!",
31
+
],
32
+
},
33
+
];
34
+
21
35
exportconstjobs: Job[]=[
22
36
{
23
37
slug: "full-membership",
24
38
name: "Full Membership",
25
39
suitableFor:
26
40
"HKU students who have extremely tight schedules but wish to support our cause for global peace and join our EXCLUSIVE and FRUITFUL international opportunities.",
27
-
benefits: [
28
-
{text: "Discounts in book fairs"},
29
-
{
30
-
text: "Priority and discounts in joining our exclusive",
31
-
subPoints: [
32
-
"Study tours, seminars",
33
-
"Guest lectures from prestigious scholars",
34
-
"International youth conference",
35
-
"Summer opportunities at ALPHA Education",
36
-
"And many more!",
37
-
],
38
-
},
39
-
],
41
+
benefits: [...COMMON_BENEFITS],
40
42
howToJoin:
41
43
"Full-time undergrad or postgrad HKU students - pay HKD$150 per annum by each September to secure your membership!",
42
44
applyUrl: undefined,
@@ -51,17 +53,7 @@ export const jobs: Job[] = [
51
53
{
52
54
text: "Valuable and unique experience in running an international student initiative for peace based in HK",
53
55
},
54
-
{text: "Discounts in book fairs"},
55
-
{
56
-
text: "Priority and discounts in joining our exclusive",
57
-
subPoints: [
58
-
"Study tours, seminars",
59
-
"Guest lectures from prestigious scholars",
60
-
"International youth conference",
61
-
"Summer opportunities at ALPHA Education",
62
-
"And many more!",
63
-
],
64
-
},
56
+
...COMMON_BENEFITS,
65
57
],
66
58
howToJoin:
67
59
"Full-time undergrad HKU students (preferrably NOT in your final year of study). Submit your CV with other relevant information on request, and pass the 2-stage interview.",
@@ -88,17 +80,7 @@ export const jobs: Job[] = [
88
80
"And so on.",
89
81
],
90
82
},
91
-
{text: "Discounts in book fairs"},
92
-
{
93
-
text: "Priority and discounts in joining our exclusive*",
94
-
subPoints: [
95
-
"Study tours, seminars",
96
-
"Guest lectures from prestigious scholars",
97
-
"International youth conference",
98
-
"Summer opportunities at ALPHA Education",
99
-
"And many more!",
100
-
],
101
-
},
83
+
...COMMON_BENEFITS,
102
84
],
103
85
howToJoin:
104
86
"Full-time undergrad or postgrad HKU students. Submit your CV with other relevant information on request and pass the interview.",
0 commit comments