Skip to content

Commit 58132e1

Browse files
committed
misc(jobs): clean up asterisk and group common benefits together
1 parent b8bb6e5 commit 58132e1

File tree

1 file changed

+17
-35
lines changed

1 file changed

+17
-35
lines changed

src/lib/jobs.ts

Lines changed: 17 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,27 @@ export type Job = {
1818
footnotes?: JobFootnote[];
1919
};
2020

21+
const COMMON_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+
2135
export const jobs: Job[] = [
2236
{
2337
slug: "full-membership",
2438
name: "Full Membership",
2539
suitableFor:
2640
"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],
4042
howToJoin:
4143
"Full-time undergrad or postgrad HKU students - pay HKD$150 per annum by each September to secure your membership!",
4244
applyUrl: undefined,
@@ -51,17 +53,7 @@ export const jobs: Job[] = [
5153
{
5254
text: "Valuable and unique experience in running an international student initiative for peace based in HK",
5355
},
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,
6557
],
6658
howToJoin:
6759
"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[] = [
8880
"And so on.",
8981
],
9082
},
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,
10284
],
10385
howToJoin:
10486
"Full-time undergrad or postgrad HKU students. Submit your CV with other relevant information on request and pass the interview.",

0 commit comments

Comments
 (0)