@newskit-render/core 1.13.3 → 1.22.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +5 -1
- package/.eslintrc +1 -1
- package/CHANGELOG.md +212 -0
- package/__tests__/pages/[articleSlug].test.tsx +1 -1
- package/__tests__/pages/__snapshots__/home.test.tsx.snap +175 -324
- package/__tests__/pages/home.test.tsx +1 -0
- package/applitools.config.js +9 -0
- package/components/article/__tests__/__snapshots__/index.test.tsx.snap +279 -517
- package/components/footer/__snapshots__/index.test.tsx.snap +7 -11
- package/components/header/index.test.tsx +1 -1
- package/components/header/index.tsx +60 -30
- package/components/section/__tests__/ArticleSlice.test.tsx +32 -24
- package/components/section/layouts/__tests__/__snapshots__/Lead.test.tsx.snap +30 -50
- package/components/section/layouts/__tests__/__snapshots__/SectionRow.test.tsx.snap +205 -358
- package/cypress/config/config.e2e.json +14 -0
- package/cypress/config/config.visual.json +8 -0
- package/cypress/e2e/account/SkipToContent.spec.js +12 -0
- package/cypress/e2e/account/accessibility.spec.js +69 -0
- package/cypress/e2e/account/account-page.spec.js +339 -0
- package/cypress/e2e/account/commenting-notifications.spec.js +44 -0
- package/cypress/e2e/account/main-api.spec.js +93 -0
- package/cypress/e2e/account/payment-page.spec.js +42 -0
- package/cypress/{integration → e2e/core}/home-page.spec.js +0 -0
- package/cypress/plugins/index.js +31 -0
- package/cypress/support/commands.js +48 -25
- package/cypress/support/index.js +2 -0
- package/cypress/visual/account/visual-regression.spec.js +31 -0
- package/helpers/a11y.ts +8 -6
- package/helpers/mocks/articleMock.ts +8 -4
- package/helpers/mocks/getRadioPostMock.ts +4 -2
- package/helpers/mocks/getUniversalArticleMock.ts +8 -4
- package/infrastructure/.circleci/config.yml +2 -2
- package/package.json +60 -54
- package/pages/[section]/[articleId]/[articleSlug].tsx +1 -0
- package/pages/[section]/index.tsx +1 -0
- package/pages/_app.tsx +216 -13
- package/pages/_document.tsx +27 -14
- package/pages/checkout/account-creation/index.tsx +9 -1
- package/pages/index.tsx +1 -0
- package/public/MyAccount/primary-navigation-logo-white.svg +6 -0
- package/public/fonts/bitter-medium.woff +0 -0
- package/public/fonts/bitter-medium.woff2 +0 -0
- package/public/fonts/bitter-mediumitalic.woff +0 -0
- package/public/fonts/bitter-mediumitalic.woff2 +0 -0
- package/public/fonts/bitter-regular.woff +0 -0
- package/public/fonts/bitter-regular.woff2 +0 -0
- package/public/fonts/bitter-semibold.woff +0 -0
- package/public/fonts/bitter-semibold.woff2 +0 -0
- package/public/fonts/dmmono-medium.woff +0 -0
- package/public/fonts/dmmono-medium.woff2 +0 -0
- package/public/fonts/dmsans-bold-webfont.woff +0 -0
- package/public/fonts/dmsans-bold-webfont.woff2 +0 -0
- package/public/fonts/dmsans-bolditalic-webfont.woff +0 -0
- package/public/fonts/dmsans-bolditalic-webfont.woff2 +0 -0
- package/public/fonts/dmsans-italic-webfont.woff +0 -0
- package/public/fonts/dmsans-italic-webfont.woff2 +0 -0
- package/public/fonts/dmsans-medium-webfont.woff +0 -0
- package/public/fonts/dmsans-medium-webfont.woff2 +0 -0
- package/public/fonts/dmsans-mediumitalic-webfont.woff +0 -0
- package/public/fonts/dmsans-mediumitalic-webfont.woff2 +0 -0
- package/public/fonts/dmsans-regular-webfont.woff +0 -0
- package/public/fonts/dmsans-regular-webfont.woff2 +0 -0
- package/public/fonts/notosans-bold-webfont.woff +0 -0
- package/public/fonts/notosans-bold-webfont.woff2 +0 -0
- package/public/fonts/notosans-italic-webfont.woff +0 -0
- package/public/fonts/notosans-italic-webfont.woff2 +0 -0
- package/public/fonts/notosans-medium-webfont.woff +0 -0
- package/public/fonts/notosans-medium-webfont.woff2 +0 -0
- package/public/fonts/notosans-regular-webfont.woff +0 -0
- package/public/fonts/notosans-regular-webfont.woff2 +0 -0
- package/public/fonts/poppins-bold-webfont.woff +0 -0
- package/public/fonts/poppins-bold-webfont.woff2 +0 -0
- package/public/fonts/poppins-bolditalic-webfont.woff +0 -0
- package/public/fonts/poppins-bolditalic-webfont.woff2 +0 -0
- package/public/fonts/poppins-extrabold-webfont.woff +0 -0
- package/public/fonts/poppins-extrabold-webfont.woff2 +0 -0
- package/public/fonts/poppins-extrabolditalic-webfont.woff +0 -0
- package/public/fonts/poppins-extrabolditalic-webfont.woff2 +0 -0
- package/public/fonts/poppins-italic-webfont.woff +0 -0
- package/public/fonts/poppins-italic-webfont.woff2 +0 -0
- package/public/fonts/poppins-light-webfont.woff +0 -0
- package/public/fonts/poppins-light-webfont.woff2 +0 -0
- package/public/fonts/poppins-lightitalic-webfont.woff +0 -0
- package/public/fonts/poppins-lightitalic-webfont.woff2 +0 -0
- package/public/fonts/poppins-medium-webfont.woff +0 -0
- package/public/fonts/poppins-medium-webfont.woff2 +0 -0
- package/public/fonts/poppins-mediumitalic-webfont.woff +0 -0
- package/public/fonts/poppins-mediumitalic-webfont.woff2 +0 -0
- package/public/fonts/poppins-regular-webfont.woff +0 -0
- package/public/fonts/poppins-regular-webfont.woff2 +0 -0
- package/public/fonts/poppins-semibold-webfont.woff +0 -0
- package/public/fonts/poppins-semibold-webfont.woff2 +0 -0
- package/public/fonts/poppins-semibolditalic-webfont.woff +0 -0
- package/public/fonts/poppins-semibolditalic-webfont.woff2 +0 -0
- package/public/fonts/source-serif-pro-600.woff +0 -0
- package/public/fonts/source-serif-pro-600.woff2 +0 -0
- package/public/fonts/source-serif-pro-600italic.woff +0 -0
- package/public/fonts/source-serif-pro-600italic.woff2 +0 -0
- package/public/fonts/source-serif-pro-700.woff +0 -0
- package/public/fonts/source-serif-pro-700.woff2 +0 -0
- package/public/fonts/source-serif-pro-700italic.woff +0 -0
- package/public/fonts/source-serif-pro-700italic.woff2 +0 -0
- package/public/fonts/source-serif-pro-italic.woff +0 -0
- package/public/fonts/source-serif-pro-italic.woff2 +0 -0
- package/public/fonts/source-serif-pro-regular.woff +0 -0
- package/public/fonts/source-serif-pro-regular.woff2 +0 -0
- package/public/prebid.min.js +1 -0
- package/temp/_document.tsx +1 -1
- package/theme/colours.json +4 -0
- package/theme/render-custom-theme.ts +5 -2
- package/tsconfig.json +4 -1
- package/helpers/articleUtil.ts +0 -4
|
@@ -4,7 +4,6 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
4
4
|
<DocumentFragment>
|
|
5
5
|
.emotion-0 {
|
|
6
6
|
height: 64px;
|
|
7
|
-
background-color: #0A0A0A;
|
|
8
7
|
}
|
|
9
8
|
|
|
10
9
|
.emotion-0 a,
|
|
@@ -180,50 +179,39 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
180
179
|
-ms-flex-pack: start;
|
|
181
180
|
-webkit-justify-content: flex-start;
|
|
182
181
|
justify-content: flex-start;
|
|
183
|
-
margin-left: calc(-4px/2);
|
|
184
|
-
margin-right: calc(-4px/2);
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.emotion-7 {
|
|
188
|
-
display: -webkit-inline-box;
|
|
189
|
-
display: -webkit-inline-flex;
|
|
190
|
-
display: -ms-inline-flexbox;
|
|
191
|
-
display: inline-flex;
|
|
192
|
-
margin-left: calc(4px/2);
|
|
193
|
-
margin-right: calc(4px/2);
|
|
194
182
|
}
|
|
195
183
|
|
|
196
184
|
@media screen {
|
|
197
|
-
.emotion-
|
|
185
|
+
.emotion-7 {
|
|
198
186
|
display: none;
|
|
199
187
|
}
|
|
200
188
|
}
|
|
201
189
|
|
|
202
190
|
@media screen and (min-width: 480px) {
|
|
203
|
-
.emotion-
|
|
191
|
+
.emotion-7 {
|
|
204
192
|
display: none;
|
|
205
193
|
}
|
|
206
194
|
}
|
|
207
195
|
|
|
208
196
|
@media screen and (min-width: 768px) {
|
|
209
|
-
.emotion-
|
|
197
|
+
.emotion-7 {
|
|
210
198
|
display: block;
|
|
211
199
|
}
|
|
212
200
|
}
|
|
213
201
|
|
|
214
202
|
@media screen and (min-width: 1024px) {
|
|
215
|
-
.emotion-
|
|
203
|
+
.emotion-7 {
|
|
216
204
|
display: block;
|
|
217
205
|
}
|
|
218
206
|
}
|
|
219
207
|
|
|
220
208
|
@media screen and (min-width: 1440px) {
|
|
221
|
-
.emotion-
|
|
209
|
+
.emotion-7 {
|
|
222
210
|
display: block;
|
|
223
211
|
}
|
|
224
212
|
}
|
|
225
213
|
|
|
226
|
-
.emotion-
|
|
214
|
+
.emotion-8 {
|
|
227
215
|
display: inline-block;
|
|
228
216
|
fill: #FFFFFF;
|
|
229
217
|
color: #FFFFFF;
|
|
@@ -231,36 +219,36 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
231
219
|
}
|
|
232
220
|
|
|
233
221
|
@media screen {
|
|
234
|
-
.emotion-
|
|
222
|
+
.emotion-9 {
|
|
235
223
|
display: block;
|
|
236
224
|
}
|
|
237
225
|
}
|
|
238
226
|
|
|
239
227
|
@media screen and (min-width: 480px) {
|
|
240
|
-
.emotion-
|
|
228
|
+
.emotion-9 {
|
|
241
229
|
display: block;
|
|
242
230
|
}
|
|
243
231
|
}
|
|
244
232
|
|
|
245
233
|
@media screen and (min-width: 768px) {
|
|
246
|
-
.emotion-
|
|
234
|
+
.emotion-9 {
|
|
247
235
|
display: none;
|
|
248
236
|
}
|
|
249
237
|
}
|
|
250
238
|
|
|
251
239
|
@media screen and (min-width: 1024px) {
|
|
252
|
-
.emotion-
|
|
240
|
+
.emotion-9 {
|
|
253
241
|
display: none;
|
|
254
242
|
}
|
|
255
243
|
}
|
|
256
244
|
|
|
257
245
|
@media screen and (min-width: 1440px) {
|
|
258
|
-
.emotion-
|
|
246
|
+
.emotion-9 {
|
|
259
247
|
display: none;
|
|
260
248
|
}
|
|
261
249
|
}
|
|
262
250
|
|
|
263
|
-
.emotion-
|
|
251
|
+
.emotion-11 {
|
|
264
252
|
display: -webkit-box;
|
|
265
253
|
display: -webkit-flex;
|
|
266
254
|
display: -ms-flexbox;
|
|
@@ -286,7 +274,7 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
286
274
|
justify-content: flex-end;
|
|
287
275
|
}
|
|
288
276
|
|
|
289
|
-
.emotion-
|
|
277
|
+
.emotion-12 {
|
|
290
278
|
position: fixed;
|
|
291
279
|
overflow: auto;
|
|
292
280
|
width: 100%;
|
|
@@ -299,7 +287,7 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
299
287
|
}
|
|
300
288
|
|
|
301
289
|
@media screen and (min-width: 768px) {
|
|
302
|
-
.emotion-
|
|
290
|
+
.emotion-12 {
|
|
303
291
|
display: block;
|
|
304
292
|
position: relative;
|
|
305
293
|
overflow: auto;
|
|
@@ -312,7 +300,7 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
312
300
|
}
|
|
313
301
|
}
|
|
314
302
|
|
|
315
|
-
.emotion-
|
|
303
|
+
.emotion-13 {
|
|
316
304
|
display: -webkit-box;
|
|
317
305
|
display: -webkit-flex;
|
|
318
306
|
display: -ms-flexbox;
|
|
@@ -334,7 +322,7 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
334
322
|
}
|
|
335
323
|
|
|
336
324
|
@media screen and (min-width: 768px) {
|
|
337
|
-
.emotion-
|
|
325
|
+
.emotion-13 {
|
|
338
326
|
-webkit-box-pack: end;
|
|
339
327
|
-ms-flex-pack: end;
|
|
340
328
|
-webkit-justify-content: flex-end;
|
|
@@ -346,115 +334,56 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
346
334
|
}
|
|
347
335
|
|
|
348
336
|
@media screen and (max-width: 767px) {
|
|
349
|
-
.emotion-
|
|
337
|
+
.emotion-14 {
|
|
350
338
|
margin-right: 0;
|
|
351
339
|
}
|
|
352
340
|
}
|
|
353
341
|
|
|
354
342
|
@media screen and (min-width: 768px) {
|
|
355
|
-
.emotion-
|
|
343
|
+
.emotion-14 {
|
|
356
344
|
margin-right: 24px;
|
|
357
345
|
}
|
|
358
346
|
}
|
|
359
347
|
|
|
360
|
-
.emotion-
|
|
361
|
-
display: -webkit-box;
|
|
362
|
-
display: -webkit-flex;
|
|
363
|
-
display: -ms-flexbox;
|
|
364
|
-
display: flex;
|
|
365
|
-
height: 100%;
|
|
366
|
-
-webkit-align-items: center;
|
|
367
|
-
-webkit-box-align: center;
|
|
368
|
-
-ms-flex-align: center;
|
|
369
|
-
align-items: center;
|
|
370
|
-
-webkit-flex-direction: row;
|
|
371
|
-
-ms-flex-direction: row;
|
|
372
|
-
flex-direction: row;
|
|
373
|
-
-webkit-box-pack: start;
|
|
374
|
-
-ms-flex-pack: start;
|
|
375
|
-
-webkit-justify-content: flex-start;
|
|
376
|
-
justify-content: flex-start;
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
.emotion-19 {
|
|
348
|
+
.emotion-17 {
|
|
380
349
|
margin: 0;
|
|
381
|
-
padding: 1px 0;
|
|
382
350
|
font-family: "DM Sans",sans-serif;
|
|
383
351
|
font-size: 14px;
|
|
384
|
-
line-height:
|
|
352
|
+
line-height: 21px;
|
|
385
353
|
font-weight: 500;
|
|
386
|
-
letter-spacing:
|
|
354
|
+
letter-spacing: 0;
|
|
355
|
+
padding: 0.5px 0px;
|
|
387
356
|
display: inline-block;
|
|
388
357
|
display: block;
|
|
389
358
|
}
|
|
390
359
|
|
|
391
|
-
.emotion-
|
|
360
|
+
.emotion-17::before {
|
|
392
361
|
content: '';
|
|
362
|
+
margin-bottom: -0.391em;
|
|
393
363
|
display: block;
|
|
394
|
-
height: 0;
|
|
395
|
-
width: 0;
|
|
396
|
-
margin-bottom: -0.3955357142857143em;
|
|
397
364
|
}
|
|
398
365
|
|
|
399
|
-
.emotion-
|
|
366
|
+
.emotion-17::after {
|
|
400
367
|
content: '';
|
|
368
|
+
margin-top: -0.409em;
|
|
401
369
|
display: block;
|
|
402
|
-
height: 0;
|
|
403
|
-
width: 0;
|
|
404
|
-
margin-top: -0.3955357142857143em;
|
|
405
370
|
}
|
|
406
371
|
|
|
407
|
-
.emotion-
|
|
372
|
+
.emotion-27 {
|
|
408
373
|
margin-right: 24px;
|
|
409
374
|
}
|
|
410
375
|
|
|
411
|
-
.emotion-
|
|
376
|
+
.emotion-28 {
|
|
412
377
|
display: inline-block;
|
|
413
378
|
vertical-align: middle;
|
|
414
379
|
overflow: hidden;
|
|
415
|
-
color: #FFFFFF;
|
|
416
|
-
-webkit-text-decoration: none;
|
|
417
|
-
text-decoration: none;
|
|
418
|
-
fill: #FFFFFF;
|
|
419
380
|
vertical-align: unset;
|
|
420
381
|
display: inline-block;
|
|
421
382
|
}
|
|
422
383
|
|
|
423
|
-
.emotion-
|
|
424
|
-
color: #FFFFFF;
|
|
425
|
-
-webkit-text-decoration: underline;
|
|
426
|
-
text-decoration: underline;
|
|
427
|
-
fill: #FFFFFF;
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
.emotion-30:active:not(:disabled) {
|
|
431
|
-
color: #FFFFFF;
|
|
432
|
-
-webkit-text-decoration: underline;
|
|
433
|
-
text-decoration: underline;
|
|
434
|
-
fill: #FFFFFF;
|
|
435
|
-
}
|
|
436
|
-
|
|
437
|
-
.emotion-30.emotion-30 {
|
|
384
|
+
.emotion-28.emotion-28 {
|
|
438
385
|
width: 32px;
|
|
439
386
|
height: 32px;
|
|
440
|
-
color: #FFFFFF;
|
|
441
|
-
-webkit-text-decoration: none;
|
|
442
|
-
text-decoration: none;
|
|
443
|
-
fill: #FFFFFF;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
.emotion-30.emotion-30:hover:not(:disabled) {
|
|
447
|
-
color: #FFFFFF;
|
|
448
|
-
-webkit-text-decoration: underline;
|
|
449
|
-
text-decoration: underline;
|
|
450
|
-
fill: #FFFFFF;
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
.emotion-30.emotion-30:active:not(:disabled) {
|
|
454
|
-
color: #FFFFFF;
|
|
455
|
-
-webkit-text-decoration: underline;
|
|
456
|
-
text-decoration: underline;
|
|
457
|
-
fill: #FFFFFF;
|
|
458
387
|
}
|
|
459
388
|
|
|
460
389
|
<div
|
|
@@ -475,88 +404,80 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
475
404
|
class="emotion-4"
|
|
476
405
|
>
|
|
477
406
|
<a
|
|
478
|
-
aria-label="
|
|
407
|
+
aria-label="Logo Link"
|
|
479
408
|
class="emotion-5"
|
|
480
409
|
href="/"
|
|
481
410
|
>
|
|
482
411
|
<span
|
|
483
412
|
class="emotion-6"
|
|
484
413
|
>
|
|
485
|
-
<
|
|
414
|
+
<div
|
|
486
415
|
class="emotion-7"
|
|
487
416
|
>
|
|
488
|
-
<
|
|
417
|
+
<svg
|
|
489
418
|
class="emotion-8"
|
|
419
|
+
height="40px"
|
|
420
|
+
viewBox="0 0 244 40"
|
|
490
421
|
>
|
|
491
|
-
<
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
/>
|
|
515
|
-
</svg>
|
|
516
|
-
</div>
|
|
517
|
-
</span>
|
|
518
|
-
<span
|
|
519
|
-
class="emotion-7"
|
|
422
|
+
<title>
|
|
423
|
+
NewsKit Logo
|
|
424
|
+
</title>
|
|
425
|
+
<path
|
|
426
|
+
d="M86.93 34.078V19.006l12.017 15.462a.63.63 0 0 0 .496.243h5.94a.63.63 0 0 0 .629-.633V6.715a.63.63 0 0 0-.629-.633h-6.553a.63.63 0 0 0-.629.633v14.499L86.671 6.326a.63.63 0 0 0-.496-.244h-6.427a.63.63 0 0 0-.629.633v27.363a.63.63 0 0 0 .629.633h6.553a.63.63 0 0 0 .629-.633zm134.203-20.324c2.389 0 4.325-1.947 4.325-4.35s-1.936-4.35-4.325-4.35-4.325 1.947-4.325 4.35 1.936 4.35 4.325 4.35zM120.484 35.185c4.133 0 7.092-1.617 9.192-4.085.112-.132.196-.514-.023-.696l-3.487-2.897c-.267-.222-.691-.111-.819.004-1.437 1.296-2.778 1.881-4.496 1.881-2.401 0-4.151-1.224-4.761-3.631h13.949c.26 0 .821-.208.821-.638v-.953c0-6.487-3.499-12.077-11.067-12.077-6.51 0-11.108 5.1-11.108 11.546v.082c0 6.813 4.882 11.465 11.799 11.465zm3.299-13.444h-7.706c.407-2.421 1.794-3.954 3.832-3.954 2.121 0 3.588 1.533 3.874 3.954zm20.504 12.53l3.366-10.581c.026-.083.115-.129.198-.102.049.016.087.054.102.103l3.289 10.576a.63.63 0 0 0 .601.444h5.737a.63.63 0 0 0 .601-.447l6.399-20.955c.102-.334-.084-.688-.416-.79-.06-.018-.122-.028-.185-.028h-6.102a.63.63 0 0 0-.607.469l-2.7 10.167c-.023.084-.109.135-.193.112-.052-.014-.094-.054-.11-.107l-3.116-10.276a.63.63 0 0 0-.602-.448h-5.409a.63.63 0 0 0-.601.447l-3.114 10.193c-.026.084-.114.13-.197.105-.052-.016-.092-.058-.106-.111L138.5 12.963a.63.63 0 0 0-.608-.473h-6.184a.63.63 0 0 0-.629.633c0 .062.009.124.027.184l6.323 20.955a.63.63 0 0 0 .602.449h5.657a.63.63 0 0 0 .599-.44zm30.749.914c5.364 0 8.981-2.538 8.981-7.411v-.082c0-3.869-2.798-5.483-6.527-6.663l-.25-.078-.253-.077-.255-.076-.258-.075-.259-.074-.69-.212-.285-.09-.205-.066-.197-.065-.189-.064-.181-.063-.116-.042-.113-.041-.109-.041-.106-.041-.102-.041-.098-.041-.095-.041-.045-.021-.089-.042-.085-.042-.082-.042-.039-.021-.076-.043-.071-.043-.068-.044c-.351-.235-.536-.495-.536-.819v-.082c0-.655.61-1.105 1.788-1.105 1.631 0 3.897.677 6.042 1.831l.116.063.017.006.024.007.029.007a.6.6 0 0 0 .034.006l.038.004c.124.009.29-.019.36-.192l.176-.536.147-.454.26-.816.273-.875.224-.726.421-1.38c.067-.22-.02-.337-.088-.391l-.019-.014-.025-.015c-2.353-1.248-5.173-1.93-7.947-1.93-5.08 0-8.819 2.62-8.819 7.329v.082c0 3.759 2.496 5.387 5.915 6.496l.243.077.246.076.248.074.252.073.254.072.256.071.259.07.13.035.55.157.367.106.277.082.198.061.128.04.185.059.118.039.115.039.111.039.107.039.103.039.051.02.097.04.048.02.092.04.088.04.084.041.081.041c.511.268.776.569.776.983v.082c0 .778-.65 1.187-1.991 1.187-2.157 0-4.714-.772-7.12-2.281l-.116-.074-.025-.015-.029-.015-.032-.015c-.106-.044-.251-.065-.332.079l-1.527 4.645-.051.153c-.103.295.109.504.212.565 2.713 1.602 5.831 2.403 8.979 2.403zm20.475-1.265V27.17a.16.16 0 0 1 .041-.106l2.707-2.996c.059-.065.158-.069.223-.011.009.008.017.018.024.028l6.887 10.19a.63.63 0 0 0 .52.277h7.894a.63.63 0 0 0 .519-.99l-10.382-15.267c-.041-.06-.036-.14.012-.194l9.756-11.126c.23-.262.205-.662-.055-.893-.115-.102-.263-.158-.416-.158h-7.614a.63.63 0 0 0-.479.223l-9.36 11.065c-.056.066-.155.075-.222.018-.035-.03-.055-.074-.055-.12V6.557a.63.63 0 0 0-.629-.633h-6.618a.63.63 0 0 0-.63.633V33.92a.63.63 0 0 0 .63.633h6.618a.63.63 0 0 0 .629-.633zm29.554 0V16.93a.63.63 0 0 0-.629-.633h-6.448a.63.63 0 0 0-.629.633v16.99a.63.63 0 0 0 .629.633h6.448a.63.63 0 0 0 .629-.633zm13.423 1.107c1.945 0 3.625-.433 4.951-1.088l.096-.048.026-.014.028-.017c.117-.074.267-.222.267-.559v-5.177c0-.267-.213-.294-.37-.268l-.035.007-.047.013c-.01.003-.019.006-.027.01l-.012.005c-.785.321-1.597.517-2.437.517-1.423 0-2.115-.654-2.115-2.206v-7.36c0-.087.071-.158.158-.158h4.337a.63.63 0 0 0 .629-.633v-4.946a.63.63 0 0 0-.629-.633h-4.337c-.087 0-.158-.071-.158-.158V7.506a.63.63 0 0 0-.629-.633h-6.428a.63.63 0 0 0-.629.633v4.807c0 .087-.07.158-.157.158h-1.816a.63.63 0 0 0-.629.633v4.946a.63.63 0 0 0 .629.633h1.816c.087 0 .157.071.157.158v8.872c0 5.271 2.725 7.314 7.361 7.314z"
|
|
427
|
+
fill="#fff"
|
|
428
|
+
/>
|
|
429
|
+
<path
|
|
430
|
+
d="M61.846.936c3.35.413 4.944 4.005 4.92 8.746l.017-.013c-5.497 4.462-16.323 7.515-26.958 1.71l.011-.016c1.568.832 3.224 1.475 5.172 1.715 2.386.294 4.303-1.023 6.043-2.889l.124-.134.062-.068.123-.137.123-.138.122-.14.121-.142.061-.071.121-.144.12-.145.146-.178.073-.09.182-.226.181-.228.144-.184.144-.185.143-.185.215-.279 1.091-1.431.209-.271.209-.269.14-.178.14-.177.14-.175.141-.173.141-.172.113-.136.113-.135.114-.133.114-.132.057-.065.114-.13.057-.064.115-.127.173-.187.116-.123.175-.18.117-.118C58.328 1.663 59.933.7 61.846.936z"
|
|
431
|
+
fill="#aebfff"
|
|
432
|
+
/>
|
|
433
|
+
<path
|
|
434
|
+
d="M26.763 28.981l.011.013c-1.414-.671-2.883-1.176-4.519-1.378-1.738-.214-3.244.513-4.634 1.704l-.11.095-.163.146-.108.1-.108.101-.268.261-.106.107-.106.109-.106.11-.053.056-.105.112-.053.057-.125.136-.124.138-.124.139-.062.07-.123.142-.123.143-.122.145-.122.146-.061.073-.15.183-.075.092-.149.185-.075.093-.149.187-.149.188-.223.283-.296.38-.671.866-.222.285-.222.283-.148.188-.223.28-.149.185-.149.183-.149.182-.15.18-.117.139-.118.138-.118.136-.118.135-.119.133-.119.132-.119.13-.06.064-.12.127-.1.104-.1.103-.1.101-.151.15-.101.098-.102.096-.051.048-.102.094-.206.183-.103.089-.052.044-.104.086c-1.302 1.066-2.706 1.698-4.305 1.5-3.321-.41-4.98-3.93-5.064-8.601l-.097.09c6.351-5.963 17.155-6.757 26.506-2.264z"
|
|
435
|
+
fill="#3358cc"
|
|
436
|
+
/>
|
|
437
|
+
<path
|
|
438
|
+
d="M42.216 35.925c-2.861-.398-5.212-1.275-7.302-2.318l-.189-.095-.188-.096-.186-.097-.231-.122-.229-.123-.182-.099-.226-.125-.224-.126-.178-.101-.177-.102-.264-.153-.349-.205-.278-.166-.276-.166-.411-.249-1.214-.738-.334-.201-.333-.199-2.669-1.45-.012-.013c-9.258-4.447-19.94-3.714-26.315 2.087l-.095.088C.156 20.101 8.779 2.598 25.068 4.608c2.854.352 5.141 1.176 7.14 2.181l.178.09.177.091.175.092.087.046.173.093.172.094.17.095.085.048.211.12.209.121.166.097.165.098.164.098.163.099.162.099.161.099.16.1.261.164.13.082.258.164.256.164 1.137.733.25.161.25.159.312.197.312.194a31.02 31.02 0 0 0 1.568.911l.199.106c10.506 5.694 21.166 2.775 26.7-1.604l.149-.12c-.055 10.998-8.815 28.185-24.55 26.243z"
|
|
439
|
+
fill="#577ffb"
|
|
440
|
+
/>
|
|
441
|
+
</svg>
|
|
442
|
+
</div>
|
|
443
|
+
<div
|
|
444
|
+
class="emotion-9"
|
|
520
445
|
>
|
|
521
|
-
<
|
|
522
|
-
class="emotion-
|
|
446
|
+
<svg
|
|
447
|
+
class="emotion-8"
|
|
448
|
+
height="40px"
|
|
449
|
+
viewBox="0 0 244 40"
|
|
523
450
|
>
|
|
524
|
-
<
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
d="M42.216 35.925c-2.861-.398-5.212-1.275-7.302-2.318l-.189-.095-.188-.096-.186-.097-.231-.122-.229-.123-.182-.099-.226-.125-.224-.126-.178-.101-.177-.102-.264-.153-.349-.205-.278-.166-.276-.166-.411-.249-1.214-.738-.334-.201-.333-.199-2.669-1.45-.012-.013c-9.258-4.447-19.94-3.714-26.315 2.087l-.095.088C.156 20.101 8.779 2.598 25.068 4.608c2.854.352 5.141 1.176 7.14 2.181l.178.09.177.091.175.092.087.046.173.093.172.094.17.095.085.048.211.12.209.121.166.097.165.098.164.098.163.099.162.099.161.099.16.1.261.164.13.082.258.164.256.164 1.137.733.25.161.25.159.312.197.312.194a31.02 31.02 0 0 0 1.568.911l.199.106c10.506 5.694 21.166 2.775 26.7-1.604l.149-.12c-.055 10.998-8.815 28.185-24.55 26.243z"
|
|
542
|
-
fill="#577ffb"
|
|
543
|
-
/>
|
|
544
|
-
</svg>
|
|
545
|
-
</div>
|
|
546
|
-
</span>
|
|
451
|
+
<title>
|
|
452
|
+
NewsKit Logo
|
|
453
|
+
</title>
|
|
454
|
+
<path
|
|
455
|
+
d="M61.846.936c3.35.413 4.944 4.005 4.92 8.746l.017-.013c-5.497 4.462-16.323 7.515-26.958 1.71l.011-.016c1.568.832 3.224 1.475 5.172 1.715 2.386.294 4.303-1.023 6.043-2.889l.124-.134.062-.068.123-.137.123-.138.122-.14.121-.142.061-.071.121-.144.12-.145.146-.178.073-.09.182-.226.181-.228.144-.184.144-.185.143-.185.215-.279 1.091-1.431.209-.271.209-.269.14-.178.14-.177.14-.175.141-.173.141-.172.113-.136.113-.135.114-.133.114-.132.057-.065.114-.13.057-.064.115-.127.173-.187.116-.123.175-.18.117-.118C58.328 1.663 59.933.7 61.846.936z"
|
|
456
|
+
fill="#aebfff"
|
|
457
|
+
/>
|
|
458
|
+
<path
|
|
459
|
+
d="M26.763 28.981l.011.013c-1.414-.671-2.883-1.176-4.519-1.378-1.738-.214-3.244.513-4.634 1.704l-.11.095-.163.146-.108.1-.108.101-.268.261-.106.107-.106.109-.106.11-.053.056-.105.112-.053.057-.125.136-.124.138-.124.139-.062.07-.123.142-.123.143-.122.145-.122.146-.061.073-.15.183-.075.092-.149.185-.075.093-.149.187-.149.188-.223.283-.296.38-.671.866-.222.285-.222.283-.148.188-.223.28-.149.185-.149.183-.149.182-.15.18-.117.139-.118.138-.118.136-.118.135-.119.133-.119.132-.119.13-.06.064-.12.127-.1.104-.1.103-.1.101-.151.15-.101.098-.102.096-.051.048-.102.094-.206.183-.103.089-.052.044-.104.086c-1.302 1.066-2.706 1.698-4.305 1.5-3.321-.41-4.98-3.93-5.064-8.601l-.097.09c6.351-5.963 17.155-6.757 26.506-2.264z"
|
|
460
|
+
fill="#3358cc"
|
|
461
|
+
/>
|
|
462
|
+
<path
|
|
463
|
+
d="M42.216 35.925c-2.861-.398-5.212-1.275-7.302-2.318l-.189-.095-.188-.096-.186-.097-.231-.122-.229-.123-.182-.099-.226-.125-.224-.126-.178-.101-.177-.102-.264-.153-.349-.205-.278-.166-.276-.166-.411-.249-1.214-.738-.334-.201-.333-.199-2.669-1.45-.012-.013c-9.258-4.447-19.94-3.714-26.315 2.087l-.095.088C.156 20.101 8.779 2.598 25.068 4.608c2.854.352 5.141 1.176 7.14 2.181l.178.09.177.091.175.092.087.046.173.093.172.094.17.095.085.048.211.12.209.121.166.097.165.098.164.098.163.099.162.099.161.099.16.1.261.164.13.082.258.164.256.164 1.137.733.25.161.25.159.312.197.312.194a31.02 31.02 0 0 0 1.568.911l.199.106c10.506 5.694 21.166 2.775 26.7-1.604l.149-.12c-.055 10.998-8.815 28.185-24.55 26.243z"
|
|
464
|
+
fill="#577ffb"
|
|
465
|
+
/>
|
|
466
|
+
</svg>
|
|
467
|
+
</div>
|
|
547
468
|
</span>
|
|
548
469
|
</a>
|
|
549
470
|
<div
|
|
550
|
-
class="emotion-
|
|
471
|
+
class="emotion-11"
|
|
551
472
|
>
|
|
552
473
|
<div
|
|
553
|
-
class="emotion-
|
|
474
|
+
class="emotion-12"
|
|
554
475
|
>
|
|
555
476
|
<div
|
|
556
|
-
class="emotion-
|
|
477
|
+
class="emotion-13"
|
|
557
478
|
>
|
|
558
479
|
<span
|
|
559
|
-
class="emotion-
|
|
480
|
+
class="emotion-14"
|
|
560
481
|
>
|
|
561
482
|
<a
|
|
562
483
|
aria-label="Section One Link"
|
|
@@ -564,10 +485,10 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
564
485
|
href="/section-one"
|
|
565
486
|
>
|
|
566
487
|
<span
|
|
567
|
-
class="emotion-
|
|
488
|
+
class="emotion-6"
|
|
568
489
|
>
|
|
569
490
|
<span
|
|
570
|
-
class="emotion-
|
|
491
|
+
class="emotion-17"
|
|
571
492
|
>
|
|
572
493
|
Section One
|
|
573
494
|
</span>
|
|
@@ -575,7 +496,7 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
575
496
|
</a>
|
|
576
497
|
</span>
|
|
577
498
|
<span
|
|
578
|
-
class="emotion-
|
|
499
|
+
class="emotion-14"
|
|
579
500
|
>
|
|
580
501
|
<a
|
|
581
502
|
aria-label="Section Two Link"
|
|
@@ -583,10 +504,10 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
583
504
|
href="/section-two"
|
|
584
505
|
>
|
|
585
506
|
<span
|
|
586
|
-
class="emotion-
|
|
507
|
+
class="emotion-6"
|
|
587
508
|
>
|
|
588
509
|
<span
|
|
589
|
-
class="emotion-
|
|
510
|
+
class="emotion-17"
|
|
590
511
|
>
|
|
591
512
|
Section Two
|
|
592
513
|
</span>
|
|
@@ -594,7 +515,7 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
594
515
|
</a>
|
|
595
516
|
</span>
|
|
596
517
|
<span
|
|
597
|
-
class="emotion-
|
|
518
|
+
class="emotion-14"
|
|
598
519
|
>
|
|
599
520
|
<a
|
|
600
521
|
aria-label="Section Three Link"
|
|
@@ -602,10 +523,10 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
602
523
|
href="/section-three"
|
|
603
524
|
>
|
|
604
525
|
<span
|
|
605
|
-
class="emotion-
|
|
526
|
+
class="emotion-6"
|
|
606
527
|
>
|
|
607
528
|
<span
|
|
608
|
-
class="emotion-
|
|
529
|
+
class="emotion-17"
|
|
609
530
|
>
|
|
610
531
|
Section Three
|
|
611
532
|
</span>
|
|
@@ -615,15 +536,15 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
615
536
|
</div>
|
|
616
537
|
</div>
|
|
617
538
|
<div
|
|
618
|
-
class="emotion-
|
|
539
|
+
class="emotion-9"
|
|
619
540
|
>
|
|
620
541
|
<div
|
|
621
|
-
class="emotion-
|
|
542
|
+
class="emotion-27"
|
|
622
543
|
>
|
|
623
544
|
<svg
|
|
624
545
|
aria-hidden="true"
|
|
625
546
|
aria-label="Mobile Menu Button"
|
|
626
|
-
class="emotion-
|
|
547
|
+
class="emotion-28 emotion-29"
|
|
627
548
|
data-testid="mobile-menu-btn"
|
|
628
549
|
fill="currentColor"
|
|
629
550
|
focusable="false"
|
|
@@ -642,18 +563,6 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
642
563
|
</svg>
|
|
643
564
|
</div>
|
|
644
565
|
</div>
|
|
645
|
-
<select>
|
|
646
|
-
<option
|
|
647
|
-
value="LightTheme"
|
|
648
|
-
>
|
|
649
|
-
LightTheme
|
|
650
|
-
</option>
|
|
651
|
-
<option
|
|
652
|
-
value="DarkTheme"
|
|
653
|
-
>
|
|
654
|
-
DarkTheme
|
|
655
|
-
</option>
|
|
656
|
-
</select>
|
|
657
566
|
</div>
|
|
658
567
|
</div>
|
|
659
568
|
</div>
|
|
@@ -982,7 +891,6 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
982
891
|
|
|
983
892
|
.emotion-16 {
|
|
984
893
|
margin: 0;
|
|
985
|
-
padding: 1px 0;
|
|
986
894
|
color: #0A0A0A;
|
|
987
895
|
}
|
|
988
896
|
|
|
@@ -994,25 +902,22 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
994
902
|
.emotion-16 {
|
|
995
903
|
font-family: "Bitter",serif;
|
|
996
904
|
font-size: 24px;
|
|
997
|
-
line-height:
|
|
905
|
+
line-height: 27px;
|
|
998
906
|
font-weight: 500;
|
|
999
|
-
letter-spacing:
|
|
907
|
+
letter-spacing: 0;
|
|
908
|
+
padding: 0.5px 0px;
|
|
1000
909
|
}
|
|
1001
910
|
|
|
1002
911
|
.emotion-16::before {
|
|
1003
912
|
content: '';
|
|
913
|
+
margin-bottom: -0.2055em;
|
|
1004
914
|
display: block;
|
|
1005
|
-
height: 0;
|
|
1006
|
-
width: 0;
|
|
1007
|
-
margin-bottom: -0.2333333333333334em;
|
|
1008
915
|
}
|
|
1009
916
|
|
|
1010
917
|
.emotion-16::after {
|
|
1011
918
|
content: '';
|
|
919
|
+
margin-top: -0.2275em;
|
|
1012
920
|
display: block;
|
|
1013
|
-
height: 0;
|
|
1014
|
-
width: 0;
|
|
1015
|
-
margin-top: -0.2958333333333334em;
|
|
1016
921
|
}
|
|
1017
922
|
}
|
|
1018
923
|
|
|
@@ -1020,25 +925,22 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1020
925
|
.emotion-16 {
|
|
1021
926
|
font-family: "Bitter",serif;
|
|
1022
927
|
font-size: 36px;
|
|
1023
|
-
line-height:
|
|
928
|
+
line-height: 40.5px;
|
|
1024
929
|
font-weight: 500;
|
|
1025
|
-
letter-spacing:
|
|
930
|
+
letter-spacing: 0;
|
|
931
|
+
padding: 0.5px 0px;
|
|
1026
932
|
}
|
|
1027
933
|
|
|
1028
934
|
.emotion-16::before {
|
|
1029
935
|
content: '';
|
|
936
|
+
margin-bottom: -0.2055em;
|
|
1030
937
|
display: block;
|
|
1031
|
-
height: 0;
|
|
1032
|
-
width: 0;
|
|
1033
|
-
margin-bottom: -0.2055555555555556em;
|
|
1034
938
|
}
|
|
1035
939
|
|
|
1036
940
|
.emotion-16::after {
|
|
1037
941
|
content: '';
|
|
942
|
+
margin-top: -0.2275em;
|
|
1038
943
|
display: block;
|
|
1039
|
-
height: 0;
|
|
1040
|
-
width: 0;
|
|
1041
|
-
margin-top: -0.2680555555555556em;
|
|
1042
944
|
}
|
|
1043
945
|
}
|
|
1044
946
|
|
|
@@ -1046,25 +948,22 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1046
948
|
.emotion-16 {
|
|
1047
949
|
font-family: "Bitter",serif;
|
|
1048
950
|
font-size: 40px;
|
|
1049
|
-
line-height:
|
|
951
|
+
line-height: 45px;
|
|
1050
952
|
font-weight: 500;
|
|
1051
|
-
letter-spacing:
|
|
953
|
+
letter-spacing: 0;
|
|
954
|
+
padding: 0.5px 0px;
|
|
1052
955
|
}
|
|
1053
956
|
|
|
1054
957
|
.emotion-16::before {
|
|
1055
958
|
content: '';
|
|
959
|
+
margin-bottom: -0.2055em;
|
|
1056
960
|
display: block;
|
|
1057
|
-
height: 0;
|
|
1058
|
-
width: 0;
|
|
1059
|
-
margin-bottom: -0.25em;
|
|
1060
961
|
}
|
|
1061
962
|
|
|
1062
963
|
.emotion-16::after {
|
|
1063
964
|
content: '';
|
|
965
|
+
margin-top: -0.2275em;
|
|
1064
966
|
display: block;
|
|
1065
|
-
height: 0;
|
|
1066
|
-
width: 0;
|
|
1067
|
-
margin-top: -0.3125em;
|
|
1068
967
|
}
|
|
1069
968
|
}
|
|
1070
969
|
|
|
@@ -1216,7 +1115,6 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1216
1115
|
|
|
1217
1116
|
.emotion-29 {
|
|
1218
1117
|
margin: 0;
|
|
1219
|
-
padding: 1px 0;
|
|
1220
1118
|
color: #0A0A0A;
|
|
1221
1119
|
}
|
|
1222
1120
|
|
|
@@ -1228,25 +1126,22 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1228
1126
|
.emotion-29 {
|
|
1229
1127
|
font-family: "Bitter",serif;
|
|
1230
1128
|
font-size: 24px;
|
|
1231
|
-
line-height:
|
|
1129
|
+
line-height: 27px;
|
|
1232
1130
|
font-weight: 500;
|
|
1233
|
-
letter-spacing:
|
|
1131
|
+
letter-spacing: 0;
|
|
1132
|
+
padding: 0.5px 0px;
|
|
1234
1133
|
}
|
|
1235
1134
|
|
|
1236
1135
|
.emotion-29::before {
|
|
1237
1136
|
content: '';
|
|
1137
|
+
margin-bottom: -0.2055em;
|
|
1238
1138
|
display: block;
|
|
1239
|
-
height: 0;
|
|
1240
|
-
width: 0;
|
|
1241
|
-
margin-bottom: -0.2333333333333334em;
|
|
1242
1139
|
}
|
|
1243
1140
|
|
|
1244
1141
|
.emotion-29::after {
|
|
1245
1142
|
content: '';
|
|
1143
|
+
margin-top: -0.2275em;
|
|
1246
1144
|
display: block;
|
|
1247
|
-
height: 0;
|
|
1248
|
-
width: 0;
|
|
1249
|
-
margin-top: -0.2958333333333334em;
|
|
1250
1145
|
}
|
|
1251
1146
|
}
|
|
1252
1147
|
|
|
@@ -1254,25 +1149,22 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1254
1149
|
.emotion-29 {
|
|
1255
1150
|
font-family: "Bitter",serif;
|
|
1256
1151
|
font-size: 28px;
|
|
1257
|
-
line-height:
|
|
1152
|
+
line-height: 31.5px;
|
|
1258
1153
|
font-weight: 500;
|
|
1259
|
-
letter-spacing:
|
|
1154
|
+
letter-spacing: 0;
|
|
1155
|
+
padding: 0.5px 0px;
|
|
1260
1156
|
}
|
|
1261
1157
|
|
|
1262
1158
|
.emotion-29::before {
|
|
1263
1159
|
content: '';
|
|
1160
|
+
margin-bottom: -0.2055em;
|
|
1264
1161
|
display: block;
|
|
1265
|
-
height: 0;
|
|
1266
|
-
width: 0;
|
|
1267
|
-
margin-bottom: -0.22142857142857142em;
|
|
1268
1162
|
}
|
|
1269
1163
|
|
|
1270
1164
|
.emotion-29::after {
|
|
1271
1165
|
content: '';
|
|
1166
|
+
margin-top: -0.2275em;
|
|
1272
1167
|
display: block;
|
|
1273
|
-
height: 0;
|
|
1274
|
-
width: 0;
|
|
1275
|
-
margin-top: -0.2839285714285714em;
|
|
1276
1168
|
}
|
|
1277
1169
|
}
|
|
1278
1170
|
|
|
@@ -1280,25 +1172,22 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1280
1172
|
.emotion-29 {
|
|
1281
1173
|
font-family: "Bitter",serif;
|
|
1282
1174
|
font-size: 32px;
|
|
1283
|
-
line-height:
|
|
1175
|
+
line-height: 36px;
|
|
1284
1176
|
font-weight: 500;
|
|
1285
|
-
letter-spacing:
|
|
1177
|
+
letter-spacing: 0;
|
|
1178
|
+
padding: 0.5px 0px;
|
|
1286
1179
|
}
|
|
1287
1180
|
|
|
1288
1181
|
.emotion-29::before {
|
|
1289
1182
|
content: '';
|
|
1183
|
+
margin-bottom: -0.2055em;
|
|
1290
1184
|
display: block;
|
|
1291
|
-
height: 0;
|
|
1292
|
-
width: 0;
|
|
1293
|
-
margin-bottom: -0.21250000000000002em;
|
|
1294
1185
|
}
|
|
1295
1186
|
|
|
1296
1187
|
.emotion-29::after {
|
|
1297
1188
|
content: '';
|
|
1189
|
+
margin-top: -0.2275em;
|
|
1298
1190
|
display: block;
|
|
1299
|
-
height: 0;
|
|
1300
|
-
width: 0;
|
|
1301
|
-
margin-top: -0.275em;
|
|
1302
1191
|
}
|
|
1303
1192
|
}
|
|
1304
1193
|
|
|
@@ -1346,33 +1235,26 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1346
1235
|
margin-right: 16px;
|
|
1347
1236
|
}
|
|
1348
1237
|
|
|
1349
|
-
.emotion-45 {
|
|
1350
|
-
padding: 1px 0px;
|
|
1351
|
-
}
|
|
1352
|
-
|
|
1353
1238
|
@media screen and (max-width: 767px) {
|
|
1354
1239
|
.emotion-45 {
|
|
1355
1240
|
font-family: "Bitter",serif;
|
|
1356
1241
|
font-size: 28px;
|
|
1357
|
-
line-height:
|
|
1242
|
+
line-height: 31.5px;
|
|
1358
1243
|
font-weight: 500;
|
|
1359
|
-
letter-spacing:
|
|
1244
|
+
letter-spacing: 0;
|
|
1245
|
+
padding: 0.5px 0px;
|
|
1360
1246
|
}
|
|
1361
1247
|
|
|
1362
1248
|
.emotion-45::before {
|
|
1363
1249
|
content: '';
|
|
1250
|
+
margin-bottom: -0.2055em;
|
|
1364
1251
|
display: block;
|
|
1365
|
-
height: 0;
|
|
1366
|
-
width: 0;
|
|
1367
|
-
margin-bottom: -0.22142857142857142em;
|
|
1368
1252
|
}
|
|
1369
1253
|
|
|
1370
1254
|
.emotion-45::after {
|
|
1371
1255
|
content: '';
|
|
1256
|
+
margin-top: -0.2275em;
|
|
1372
1257
|
display: block;
|
|
1373
|
-
height: 0;
|
|
1374
|
-
width: 0;
|
|
1375
|
-
margin-top: -0.2839285714285714em;
|
|
1376
1258
|
}
|
|
1377
1259
|
}
|
|
1378
1260
|
|
|
@@ -1380,25 +1262,22 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1380
1262
|
.emotion-45 {
|
|
1381
1263
|
font-family: "Bitter",serif;
|
|
1382
1264
|
font-size: 32px;
|
|
1383
|
-
line-height:
|
|
1265
|
+
line-height: 36px;
|
|
1384
1266
|
font-weight: 500;
|
|
1385
|
-
letter-spacing:
|
|
1267
|
+
letter-spacing: 0;
|
|
1268
|
+
padding: 0.5px 0px;
|
|
1386
1269
|
}
|
|
1387
1270
|
|
|
1388
1271
|
.emotion-45::before {
|
|
1389
1272
|
content: '';
|
|
1273
|
+
margin-bottom: -0.2055em;
|
|
1390
1274
|
display: block;
|
|
1391
|
-
height: 0;
|
|
1392
|
-
width: 0;
|
|
1393
|
-
margin-bottom: -0.21250000000000002em;
|
|
1394
1275
|
}
|
|
1395
1276
|
|
|
1396
1277
|
.emotion-45::after {
|
|
1397
1278
|
content: '';
|
|
1279
|
+
margin-top: -0.2275em;
|
|
1398
1280
|
display: block;
|
|
1399
|
-
height: 0;
|
|
1400
|
-
width: 0;
|
|
1401
|
-
margin-top: -0.275em;
|
|
1402
1281
|
}
|
|
1403
1282
|
}
|
|
1404
1283
|
|
|
@@ -1406,25 +1285,22 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1406
1285
|
.emotion-45 {
|
|
1407
1286
|
font-family: "Bitter",serif;
|
|
1408
1287
|
font-size: 36px;
|
|
1409
|
-
line-height:
|
|
1288
|
+
line-height: 40.5px;
|
|
1410
1289
|
font-weight: 500;
|
|
1411
|
-
letter-spacing:
|
|
1290
|
+
letter-spacing: 0;
|
|
1291
|
+
padding: 0.5px 0px;
|
|
1412
1292
|
}
|
|
1413
1293
|
|
|
1414
1294
|
.emotion-45::before {
|
|
1415
1295
|
content: '';
|
|
1296
|
+
margin-bottom: -0.2055em;
|
|
1416
1297
|
display: block;
|
|
1417
|
-
height: 0;
|
|
1418
|
-
width: 0;
|
|
1419
|
-
margin-bottom: -0.2055555555555556em;
|
|
1420
1298
|
}
|
|
1421
1299
|
|
|
1422
1300
|
.emotion-45::after {
|
|
1423
1301
|
content: '';
|
|
1302
|
+
margin-top: -0.2275em;
|
|
1424
1303
|
display: block;
|
|
1425
|
-
height: 0;
|
|
1426
|
-
width: 0;
|
|
1427
|
-
margin-top: -0.2680555555555556em;
|
|
1428
1304
|
}
|
|
1429
1305
|
}
|
|
1430
1306
|
|
|
@@ -1513,30 +1389,26 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1513
1389
|
|
|
1514
1390
|
.emotion-51 {
|
|
1515
1391
|
margin: 0;
|
|
1516
|
-
padding: 1px 0;
|
|
1517
1392
|
font-family: "Poppins",sans-serif;
|
|
1518
1393
|
font-size: 14px;
|
|
1519
|
-
line-height:
|
|
1394
|
+
line-height: 21px;
|
|
1520
1395
|
font-weight: 500;
|
|
1521
|
-
letter-spacing:
|
|
1396
|
+
letter-spacing: 0;
|
|
1397
|
+
padding: 0.5px 0px;
|
|
1522
1398
|
display: inline-block;
|
|
1523
1399
|
display: block;
|
|
1524
1400
|
}
|
|
1525
1401
|
|
|
1526
1402
|
.emotion-51::before {
|
|
1527
1403
|
content: '';
|
|
1404
|
+
margin-bottom: -0.403em;
|
|
1528
1405
|
display: block;
|
|
1529
|
-
height: 0;
|
|
1530
|
-
width: 0;
|
|
1531
|
-
margin-bottom: -0.3955357142857143em;
|
|
1532
1406
|
}
|
|
1533
1407
|
|
|
1534
1408
|
.emotion-51::after {
|
|
1535
1409
|
content: '';
|
|
1410
|
+
margin-top: -0.4em;
|
|
1536
1411
|
display: block;
|
|
1537
|
-
height: 0;
|
|
1538
|
-
width: 0;
|
|
1539
|
-
margin-top: -0.3955357142857143em;
|
|
1540
1412
|
}
|
|
1541
1413
|
|
|
1542
1414
|
.emotion-53 {
|
|
@@ -1653,7 +1525,6 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1653
1525
|
|
|
1654
1526
|
.emotion-68 {
|
|
1655
1527
|
margin: 0;
|
|
1656
|
-
padding: 1px 0;
|
|
1657
1528
|
color: #0A0A0A;
|
|
1658
1529
|
}
|
|
1659
1530
|
|
|
@@ -1665,25 +1536,22 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1665
1536
|
.emotion-68 {
|
|
1666
1537
|
font-family: "Bitter",serif;
|
|
1667
1538
|
font-size: 20px;
|
|
1668
|
-
line-height:
|
|
1539
|
+
line-height: 22.5px;
|
|
1669
1540
|
font-weight: 500;
|
|
1670
|
-
letter-spacing:
|
|
1541
|
+
letter-spacing: 0;
|
|
1542
|
+
padding: 0.5px 0px;
|
|
1671
1543
|
}
|
|
1672
1544
|
|
|
1673
1545
|
.emotion-68::before {
|
|
1674
1546
|
content: '';
|
|
1547
|
+
margin-bottom: -0.2055em;
|
|
1675
1548
|
display: block;
|
|
1676
|
-
height: 0;
|
|
1677
|
-
width: 0;
|
|
1678
|
-
margin-bottom: -0.25em;
|
|
1679
1549
|
}
|
|
1680
1550
|
|
|
1681
1551
|
.emotion-68::after {
|
|
1682
1552
|
content: '';
|
|
1553
|
+
margin-top: -0.2275em;
|
|
1683
1554
|
display: block;
|
|
1684
|
-
height: 0;
|
|
1685
|
-
width: 0;
|
|
1686
|
-
margin-top: -0.3125em;
|
|
1687
1555
|
}
|
|
1688
1556
|
}
|
|
1689
1557
|
|
|
@@ -1691,25 +1559,22 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1691
1559
|
.emotion-68 {
|
|
1692
1560
|
font-family: "Bitter",serif;
|
|
1693
1561
|
font-size: 22px;
|
|
1694
|
-
line-height:
|
|
1562
|
+
line-height: 24.75px;
|
|
1695
1563
|
font-weight: 500;
|
|
1696
|
-
letter-spacing:
|
|
1564
|
+
letter-spacing: 0;
|
|
1565
|
+
padding: 0.5px 0px;
|
|
1697
1566
|
}
|
|
1698
1567
|
|
|
1699
1568
|
.emotion-68::before {
|
|
1700
1569
|
content: '';
|
|
1570
|
+
margin-bottom: -0.2055em;
|
|
1701
1571
|
display: block;
|
|
1702
|
-
height: 0;
|
|
1703
|
-
width: 0;
|
|
1704
|
-
margin-bottom: -0.19545454545454544em;
|
|
1705
1572
|
}
|
|
1706
1573
|
|
|
1707
1574
|
.emotion-68::after {
|
|
1708
1575
|
content: '';
|
|
1576
|
+
margin-top: -0.2275em;
|
|
1709
1577
|
display: block;
|
|
1710
|
-
height: 0;
|
|
1711
|
-
width: 0;
|
|
1712
|
-
margin-top: -0.25795454545454544em;
|
|
1713
1578
|
}
|
|
1714
1579
|
}
|
|
1715
1580
|
|
|
@@ -1717,25 +1582,22 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1717
1582
|
.emotion-68 {
|
|
1718
1583
|
font-family: "Bitter",serif;
|
|
1719
1584
|
font-size: 24px;
|
|
1720
|
-
line-height:
|
|
1585
|
+
line-height: 27px;
|
|
1721
1586
|
font-weight: 500;
|
|
1722
|
-
letter-spacing:
|
|
1587
|
+
letter-spacing: 0;
|
|
1588
|
+
padding: 0.5px 0px;
|
|
1723
1589
|
}
|
|
1724
1590
|
|
|
1725
1591
|
.emotion-68::before {
|
|
1726
1592
|
content: '';
|
|
1593
|
+
margin-bottom: -0.2055em;
|
|
1727
1594
|
display: block;
|
|
1728
|
-
height: 0;
|
|
1729
|
-
width: 0;
|
|
1730
|
-
margin-bottom: -0.2333333333333334em;
|
|
1731
1595
|
}
|
|
1732
1596
|
|
|
1733
1597
|
.emotion-68::after {
|
|
1734
1598
|
content: '';
|
|
1599
|
+
margin-top: -0.2275em;
|
|
1735
1600
|
display: block;
|
|
1736
|
-
height: 0;
|
|
1737
|
-
width: 0;
|
|
1738
|
-
margin-top: -0.2958333333333334em;
|
|
1739
1601
|
}
|
|
1740
1602
|
}
|
|
1741
1603
|
|
|
@@ -1745,7 +1607,6 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1745
1607
|
|
|
1746
1608
|
.emotion-70 {
|
|
1747
1609
|
margin: 0;
|
|
1748
|
-
padding: 1px 0;
|
|
1749
1610
|
color: #0A0A0A;
|
|
1750
1611
|
}
|
|
1751
1612
|
|
|
@@ -1757,25 +1618,22 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1757
1618
|
.emotion-70 {
|
|
1758
1619
|
font-family: "DM Sans",sans-serif;
|
|
1759
1620
|
font-size: 14px;
|
|
1760
|
-
line-height:
|
|
1621
|
+
line-height: 21px;
|
|
1761
1622
|
font-weight: 400;
|
|
1762
|
-
letter-spacing:
|
|
1623
|
+
letter-spacing: 0;
|
|
1624
|
+
padding: 0.5px 0px;
|
|
1763
1625
|
}
|
|
1764
1626
|
|
|
1765
1627
|
.emotion-70::before {
|
|
1766
1628
|
content: '';
|
|
1629
|
+
margin-bottom: -0.391em;
|
|
1767
1630
|
display: block;
|
|
1768
|
-
height: 0;
|
|
1769
|
-
width: 0;
|
|
1770
|
-
margin-bottom: -0.3955357142857143em;
|
|
1771
1631
|
}
|
|
1772
1632
|
|
|
1773
1633
|
.emotion-70::after {
|
|
1774
1634
|
content: '';
|
|
1635
|
+
margin-top: -0.409em;
|
|
1775
1636
|
display: block;
|
|
1776
|
-
height: 0;
|
|
1777
|
-
width: 0;
|
|
1778
|
-
margin-top: -0.3955357142857143em;
|
|
1779
1637
|
}
|
|
1780
1638
|
}
|
|
1781
1639
|
|
|
@@ -1783,25 +1641,22 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
1783
1641
|
.emotion-70 {
|
|
1784
1642
|
font-family: "DM Sans",sans-serif;
|
|
1785
1643
|
font-size: 16px;
|
|
1786
|
-
line-height:
|
|
1644
|
+
line-height: 24px;
|
|
1787
1645
|
font-weight: 400;
|
|
1788
|
-
letter-spacing:
|
|
1646
|
+
letter-spacing: 0;
|
|
1647
|
+
padding: 0.5px 0px;
|
|
1789
1648
|
}
|
|
1790
1649
|
|
|
1791
1650
|
.emotion-70::before {
|
|
1792
1651
|
content: '';
|
|
1652
|
+
margin-bottom: -0.391em;
|
|
1793
1653
|
display: block;
|
|
1794
|
-
height: 0;
|
|
1795
|
-
width: 0;
|
|
1796
|
-
margin-bottom: -0.43125em;
|
|
1797
1654
|
}
|
|
1798
1655
|
|
|
1799
1656
|
.emotion-70::after {
|
|
1800
1657
|
content: '';
|
|
1658
|
+
margin-top: -0.409em;
|
|
1801
1659
|
display: block;
|
|
1802
|
-
height: 0;
|
|
1803
|
-
width: 0;
|
|
1804
|
-
margin-top: -0.43125em;
|
|
1805
1660
|
}
|
|
1806
1661
|
}
|
|
1807
1662
|
|
|
@@ -3134,30 +2989,26 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
3134
2989
|
|
|
3135
2990
|
.emotion-12 {
|
|
3136
2991
|
margin: 0;
|
|
3137
|
-
padding: 1px 0;
|
|
3138
2992
|
font-family: "DM Sans",sans-serif;
|
|
3139
2993
|
font-size: 14px;
|
|
3140
|
-
line-height:
|
|
2994
|
+
line-height: 21px;
|
|
3141
2995
|
font-weight: 500;
|
|
3142
|
-
letter-spacing:
|
|
2996
|
+
letter-spacing: 0;
|
|
2997
|
+
padding: 0.5px 0px;
|
|
3143
2998
|
display: inline-block;
|
|
3144
2999
|
display: block;
|
|
3145
3000
|
}
|
|
3146
3001
|
|
|
3147
3002
|
.emotion-12::before {
|
|
3148
3003
|
content: '';
|
|
3004
|
+
margin-bottom: -0.391em;
|
|
3149
3005
|
display: block;
|
|
3150
|
-
height: 0;
|
|
3151
|
-
width: 0;
|
|
3152
|
-
margin-bottom: -0.3955357142857143em;
|
|
3153
3006
|
}
|
|
3154
3007
|
|
|
3155
3008
|
.emotion-12::after {
|
|
3156
3009
|
content: '';
|
|
3010
|
+
margin-top: -0.409em;
|
|
3157
3011
|
display: block;
|
|
3158
|
-
height: 0;
|
|
3159
|
-
width: 0;
|
|
3160
|
-
margin-top: -0.3955357142857143em;
|
|
3161
3012
|
}
|
|
3162
3013
|
|
|
3163
3014
|
.emotion-35 {
|
|
@@ -3165,9 +3016,9 @@ exports[`getServerSideProps Homepage 1`] = `
|
|
|
3165
3016
|
color: #535353;
|
|
3166
3017
|
font-family: "DM Sans",sans-serif;
|
|
3167
3018
|
font-size: 14px;
|
|
3168
|
-
line-height: 1.
|
|
3019
|
+
line-height: 1.5;
|
|
3169
3020
|
font-weight: 500;
|
|
3170
|
-
letter-spacing:
|
|
3021
|
+
letter-spacing: 0;
|
|
3171
3022
|
}
|
|
3172
3023
|
|
|
3173
3024
|
.emotion-35 svg {
|