-
-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy pathSiteFooter.tsx
294 lines (292 loc) · 13.4 KB
/
SiteFooter.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
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome/index.js"
import { faAngleRight } from "@fortawesome/free-solid-svg-icons"
import { SiteFooterContext } from "@ourworldindata/utils"
import { viteAssetsForSite } from "./viteUtils.js"
import { ScriptLoadErrorDetector } from "./NoJSDetector.js"
import { RSS_FEEDS, SOCIALS } from "./SiteConstants.js"
interface SiteFooterProps {
hideDonate?: boolean
hideDonationFlag?: boolean
baseUrl: string
context?: SiteFooterContext
debug?: boolean
isPreviewing?: boolean
}
export const SiteFooter = (props: SiteFooterProps) => (
<>
{!props.hideDonate && (
<section className="donate-footer">
<div className="wrapper">
<div className="owid-row flex-align-center">
<div className="owid-col owid-col--lg-3 owid-padding-bottom--sm-3">
<p>
Our World in Data is free and accessible for
everyone.
</p>
<p>Help us do this work by making a donation.</p>
</div>
<div className="owid-col owid-col--lg-1">
<a
href="/donate"
className="owid-button donate-button"
data-track-note="donate_footer"
>
<span className="label">Donate now</span>
<span className="icon">
<FontAwesomeIcon icon={faAngleRight} />
</span>
</a>
</div>
</div>
</div>
</section>
)}
<footer className="site-footer">
<div className="wrapper">
<div className="owid-row">
<div className="owid-col owid-col--lg-1">
<ul>
<li>
<a
href="/about"
data-track-note="footer_navigation"
>
About
</a>
</li>
<li>
<a
href="/about#contact"
data-track-note="footer_navigation"
>
Contact
</a>
</li>
<li>
<a
href="/feedback"
data-track-note="footer_navigation"
>
Feedback
</a>
</li>
<li>
<a
href="/jobs"
data-track-note="footer_navigation"
>
Jobs
</a>
</li>
<li>
<a
href="/funding"
data-track-note="footer_navigation"
>
Funding
</a>
</li>
<li>
<a
href="/faqs"
data-track-note="footer_navigation"
>
FAQs
</a>
</li>
<li>
<a
href="/donate"
data-track-note="footer_navigation"
>
Donate
</a>
</li>
<li>
<a
href="/privacy-policy"
data-track-note="footer_navigation"
>
Privacy policy
</a>
</li>
</ul>
</div>
<div className="owid-col owid-col--lg-1">
<ul>
<li>
<a
href="/latest"
data-track-note="footer_navigation"
>
Latest work
</a>
</li>
<li>
<a
href="/data"
data-track-note="footer_navigation"
>
Data Catalog
</a>
</li>
{SOCIALS.map(({ title, url }) => (
<li key={title}>
<a
href={url}
data-track-note="footer_navigation"
>
{title}
</a>
</li>
))}
<li>
<a
href="https://github.com/owid"
data-track-note="footer_navigation"
>
GitHub
</a>
</li>
{RSS_FEEDS.map(({ title, url }) => (
<li key={title}>
<a
href={url}
data-track-note="footer_navigation"
>
{title}
</a>
</li>
))}
</ul>
</div>
<div className="owid-col owid-col--lg-1">
<div className="logos">
<a
href="https://www.oxfordmartin.ox.ac.uk/global-development"
className="partner-logo"
data-track-note="footer_navigation"
>
<picture>
<source
type="image/avif"
srcSet={`${props.baseUrl}/oms-logo.avif`}
/>
<img
src={`${props.baseUrl}/oms-logo.png`}
alt="Oxford Martin School logo"
loading="lazy"
width={275}
height={139}
/>
</picture>
</a>
<a
href="/owid-at-ycombinator"
className="partner-logo"
data-track-note="footer_navigation"
>
<picture>
<source
type="image/avif"
srcSet={`${props.baseUrl}/yc-logo.avif`}
/>
<img
src={`${props.baseUrl}/yc-logo.png`}
alt="Y Combinator logo"
loading="lazy"
width={490}
height={138}
/>
</picture>
</a>
</div>
</div>
<div className="owid-col flex-2">
<div className="legal">
<p>
Licenses: All visualizations, data, and articles
produced by Our World in Data are open access
under the{" "}
<a
href="https://creativecommons.org/licenses/by/4.0/"
target="_blank"
rel="noopener"
>
Creative Commons BY license
</a>
. You have permission to use, distribute, and
reproduce these in any medium, provided the
source and authors are credited. All the
software and code that we write is open source
and made available via GitHub under the
permissive{" "}
<a
href="https://github.com/owid/owid-grapher/blob/master/LICENSE.md "
target="_blank"
rel="noopener"
>
MIT license
</a>
. All other material, including data produced by
third parties and made available by Our World in
Data, is subject to the license terms from the
original third-party authors.
</p>
<p>
Please consult our full{" "}
<a href="/organization#legal-disclaimer">
legal disclaimer
</a>
.
</p>
<p className="legal--last-paragraph">
<span>
Our World in Data is a project of the{" "}
<a href="https://global-change-data-lab.org/">
Global Change Data Lab
</a>
, a registered charity in England and Wales
(Charity Number 1186433).
</span>
<a
href="https://global-change-data-lab.org/"
className="partner-logo gcdl-logo"
data-track-note="footer_navigation"
>
<picture>
<source
type="image/webp"
srcSet={`${props.baseUrl}/gcdl-logo.webp`}
/>
<img
src={`${props.baseUrl}/gcdl-logo.png`}
alt="Global Change Data Lab logo"
loading="lazy"
width={106}
height={127}
/>
</picture>
</a>
</p>
</div>
</div>
</div>
</div>
<div className="site-tools" />
{viteAssetsForSite().forFooter}
<ScriptLoadErrorDetector />
<script
type="module"
dangerouslySetInnerHTML={{
__html: `window.runSiteFooterScripts(${JSON.stringify({
context: props.context,
debug: props.debug,
isPreviewing: props.isPreviewing,
hideDonationFlag: props.hideDonationFlag,
})})`, // todo: gotta be a better way.
}}
/>
</footer>
</>
)