-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathIntroductionText.tsx
164 lines (164 loc) · 5.01 KB
/
IntroductionText.tsx
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
export const INTRO_TEXT = [
{
title: 'Poverty and Inequality',
id: 'Poverty and Inequality',
bodyText: (
<div>
<p className='undp-typography margin-bottom-00'>
Tackling inequality of opportunities by investing in the enhanced
capabilities people need to escape poverty in a sustainable manner.
</p>
</div>
),
link: '/poverty-and-inequality',
},
{
title: 'Gender Equality',
id: 'Gender',
bodyText: (
<div>
<p className='undp-typography margin-bottom-00'>
Confronting the structural obstacles to gender equality and
strengthening women's economic empowerment and leadership.
</p>
</div>
),
link: '/gender-equality',
},
{
title: 'Energy',
id: 'Energy',
bodyText: (
<div>
<p className='undp-typography margin-bottom-00'>
Increasing energy access for those furthest behind and accelerating
the transition to renew-able energy.
</p>
</div>
),
link: '/energy',
},
{
title: 'Environment',
id: 'Environment',
bodyText: (
<div>
<p className='undp-typography margin-bottom-00'>
Putting nature and the environment at the heart of national economies
and planning; helping governments protect, manage and value their
natural assets.
</p>
</div>
),
link: '/environment',
},
{
title: 'Resilience',
id: 'Resilience',
bodyText: (
<div>
<p className='undp-typography margin-bottom-00'>
Supporting countries and communities in building resilience to diverse
shocks and crises, including conflict, climate change, disasters and
epidemics.
</p>
</div>
),
link: '/resilience',
},
{
title: 'Governance',
id: 'Governance',
bodyText: (
<div>
<p className='undp-typography margin-bottom-00'>
Helping countries address emerging complexities by “future-proofing”
governance systems through anticipatory approaches and better
management of risk.
</p>
</div>
),
link: '/governance',
},
{
title: 'Arab States',
id: 'AS',
bodyText: (
<div>
<p className='undp-typography margin-bottom-00'>
The Regional Bureau for Arab States (RBAS) based in New York serves as
the headquarters for UNDP regional programmes and country offices in
17 Arab countries, with the 18th located in the occupied Palestinian
territory.
</p>
</div>
),
link: '/regions/arab-states',
},
{
title: 'Asia and the Pacific',
id: 'AP',
bodyText: (
<div>
<p className='undp-typography margin-bottom-00'>
UNDP Regional Bureau for Asia and the Pacific (RBAP), with 24 Country
Offices covering work in 36 countries and decades of experience in the
region, is a trusted adviser and a 'development partner' of
choice for governments across the region in supporting the
localization and achievement of the Sustainable Development Goals
(SDGs).
</p>
</div>
),
link: '/regions/asia-and-the-pacific',
},
{
title: 'Europe and Central Asia',
id: 'ECA',
bodyText: (
<div>
<p className='undp-typography margin-bottom-00'>
UNDP's goal in Europe and Central Asia is to help eradicate
poverty in all its forms, accelerate the transition to sustainable
development, and make sure countries and people are able to withstand
crises and shocks. We work to make sure the most vulnerable and
excluded are not left behind, develop game-changing solutions to
accelerate sustainable development, and promote prevention and
preparedness.
</p>
</div>
),
link: '/regions/europe-and-central-asia',
},
{
title: 'Latin America and the Caribbean',
id: 'LAC',
bodyText: (
<div>
<p className='undp-typography margin-bottom-00'>
The Bureau for Latin America and the Caribbean (RBLAC) serves as
headquarters for UNDP's regional programmes and our offices in 26
countries—covering 42 countries and territories.
</p>
</div>
),
link: '/regions/latin-america-and-the-caribbean',
},
{
title: 'Africa',
id: 'SSA',
bodyText: (
<div>
<p className='undp-typography margin-bottom-00'>
UNDP's Regional Bureau for Africa (RBA) supports Africa's
people, its governments, and institutions as they seek to consolidate
and accelerate development gains to overcome the lingering effects of
the global pandemic, and effectively address the challenges that
remain, including: jobless growth, persistent inequalities, weak
governance, climate change, and persistent violent conflict.
</p>
</div>
),
link: '/regions/africa',
},
];