-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1970 lines (1811 loc) · 132 KB
/
index.html
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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
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
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The State of Mozilla: 2022 — 2023 Annual Report — Mozilla</title>
<meta name="description" content="Every year, in the spirit of openness upon which Mozilla was founded, we share publicly the ways we have protected, fought for and helped advance the internet in service of the people who rely on it every day." />
<meta property="og:title" content="The State of Mozilla: 2022 — 2023 Annual Report — Mozilla" />
<meta property="og:description" content="Every year, in the spirit of openness upon which Mozilla was founded, we share publicly the ways we have protected, fought for and helped advance the internet in service of the people who rely on it every day." />
<meta property="og:image" content="/og-image.jpg" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SCRM4GD0EL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-SCRM4GD0EL');
// Push to google analytics when window hash changes
window.addEventListener('hashchange', function () {
gtag('config', 'G-SCRM4GD0EL', {
'page_path': window.location.pathname + window.location.search + window.location.hash
});
});
</script>
<script type="text/javascript" src="https://www.youtube.com/iframe_api" defer></script>
</head>
<body class="flex flex-col font-body" x-data x-cloak>
<header ref="header" class="fixed top-0 left-0 z-20 w-full transition duration-150 ease-out" x-data="nav()" @scroll.window="revealHeader()" :class="isScrolled ? 'bg-white' : ''">
<div class="container flex items-center justify-between gap-6 py-5 transition-opacity duration-300 md:py-9">
<a href="/" x-cloak class="w-[100px] z-10">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 99 29" class="w-[100px]">
<g fill="#000000" clip-path="url(#header-a)">
<path d="M36.9066 12.885c-1.8103 0-2.9378 1.3793-2.9378 3.7675 0 2.1956.9889 3.8842 2.9081 3.8842 1.84 0 3.0467-1.5211 3.0467-3.9401 0-2.5607-1.3453-3.7116-3.017-3.7116Zm48.5195 6.384c0 .8163.3858 1.4656 1.4539 1.4656 1.2612 0 2.6065-.928 2.6907-3.0374-.5739-.0863-1.2067-.1675-1.7855-.1675-1.2612-.0051-2.3591.36-2.3591 1.7393Z" />
<path d="M0 0v29h98.9183V0H0Zm28.7804 23.042h-5.1883v-7.1449c0-2.1957-.7121-3.0374-2.1119-3.0374-1.7014 0-2.3891 1.2372-2.3891 3.012v4.4116h1.6473v2.7587H15.555v-7.1449c0-2.1957-.7124-3.0374-2.1119-3.0374-1.7013 0-2.389 1.2372-2.389 3.012v4.4116h2.3593v2.7587H5.8707v-2.7587h1.64694V13.108H5.8707v-2.7586h5.1834v1.9118c.7417-1.3489 2.0326-2.1652 3.7588-2.1652 1.7855 0 3.4275.8722 4.036 2.7282.6873-1.6886 2.0871-2.7282 4.036-2.7282 2.2204 0 4.2535 1.3793 4.2535 4.3862v5.8011h1.6469v2.7587h-.0049Zm7.9875.2787c-3.8133 0-6.4495-2.3885-6.4495-6.4398 0-3.712 2.196-6.7798 6.6425-6.7798 4.4462 0 6.6125 3.0627 6.6125 6.6073 0 4.0516-2.8536 6.6123-6.8055 6.6123Zm19.957-.2787H45.913l-.356-1.9119 6.8055-8.017h-3.8677l-.5491 1.9676-2.5521-.2842.4402-4.4471h10.8663l.2769 1.9118-6.865 8.0221h4.0063l.5785-1.9676 2.7996.2791-.7715 4.4472Zm7.0626 0h-3.7044v-4.5588h3.7044v4.5588Zm0-8.1338h-3.7044v-4.5588h3.7044v4.5588Zm2.3148 8.1338 5.3513-19.35537h3.4869L69.5892 23.042h-3.4869Zm7.1913 0 5.3463-19.35537h3.487L76.7756 23.042h-3.482Zm18.9924.2787c-1.6469 0-2.5521-.9838-2.7154-2.5302-.7121 1.293-1.9733 2.5302-3.9766 2.5302-1.7856 0-3.8133-.9838-3.8133-3.6308 0-3.1236 2.9378-3.8537 5.7622-3.8537.6873 0 1.3994.0304 2.0327.1116v-.4208c0-1.2931-.0298-2.8399-2.0327-2.8399-.7422 0-1.3157.0559-1.8945.3651l-.4006 1.43-2.8239-.3092.4847-2.921c2.166-.9026 3.2642-1.1509 5.2969-1.1509 2.6609 0 4.9114 1.4047 4.9114 4.305v5.5122c0 .7301.2769.9835.8507.9835.163 0 .3313-.0305.5194-.086l.0294 1.9115c-.6676.3701-1.4638.5934-2.2304.5934Z" />
</g>
<defs>
<clipPath id="header-a">
<path fill="#fff" d="M0 0h99v29H0z" />
</clipPath>
</defs>
</svg>
<span class="sr-only">Go to Mozilla.org</span>
</a>
<button class="relative z-10 group lg:hidden" type="button" @click="toggleMenu()">
<span class="sr-only">Toggle Menu</span>
<div class="flex flex-col justify-between items-end lg:items-start w-[22px] h-[22px] py-[3px]">
<span
class="bg-black h-[2px] group-hover:bg-primary rounded-full w-full block transition-[width,background-color] duration-150 ease-out"
:class="menuOpen ? '!w-0 delay-300' : ''"></span>
<span
class="bg-black h-[2px] group-hover:bg-primary rounded-full w-full block transition-[width,background-color] duration-150 ease-out"
:class="menuOpen ? '!w-0 delay-150' : ''"></span>
<span
class="bg-black h-[2px] group-hover:bg-primary rounded-full w-full block transition-[width,background-color] duration-150 ease-out"
:class="menuOpen ? '!w-0' : ''"></span>
</div>
<div
class="flex flex-col absolute inset-0 justify-center w-0 transition-[width] h-[22px] -translate-y-1 duration-300 ease-in-out"
:class="menuOpen ? 'delay-300 !w-[22px]' : ''">
<span
class="bg-black h-[2px] duration-150 mt-1 rounded-sm w-full block transition-transform absolute left-1/2 -translate-x-1/2 -translate-y-1/2 top-1/2 ease-[cubic-bezier(0.175, 0.885, 0.32, 1.275)]"
:class="menuOpen ? ' delay-[550ms] rotate-45' : ''"></span>
<span
class="bg-black h-[2px] duration-150 mt-1 rounded-sm w-full block absolute left-1/2 transition-transform -translate-x-1/2 -translate-y-1/2 top-1/2 ease-[cubic-bezier(0.175, 0.885, 0.32, 1.275)]"
:class="menuOpen ? 'delay-[550ms] -rotate-45' : ''"></span>
</div>
</button>
<div class="block lg:hidden absolute top-0 left-0 transition duration-150 ease-out bg-white w-full pt-[80px] pb-[50px] px-6" x-show="menuOpen" x-cloak :class="!menuOpen ? '-translate-y-full' : ' shadow-2xl shadow-[rgba(0, 0, 0, .5)]'" x-trap.noscroll="menuOpen" @click.outside="menuOpen = false">
<div class="flex flex-col items-center justify-center gap-[45px]">
<div class="w-full h-px bg-black"></div>
<a href="https://www.mozilla.org/?utm_source=stateof.mozilla.org&utm_medium=referral&utm_campaign=2023" target="_blank" class="flex items-start justify-start gap-[5px] text-[16px]/[19px] font-medium hover:underline cursor-pointer font-title">
mozilla.org
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14" class="w-[14px] shring-0 translate-y-0.5">
<path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.16667" d="M10.5 7.58333v3.49997A1.1666 1.1666 0 0 1 9.33333 12.25H2.91667A1.16663 1.16663 0 0 1 1.75 11.0833V4.66667A1.16668 1.16668 0 0 1 2.91667 3.5h3.5M8.75 1.75h3.5v3.5M5.83337 8.16667 12.25 1.75" />
</svg>
</a>
<a href="http://foundation.mozilla.org/?utm_source=stateof.mozilla.org&utm_medium=referral&utm_campaign=2023" target="_blank" class="flex items-start justify-start gap-[5px] text-[16px]/[19px] font-medium hover:underline cursor-pointer font-title">
foundation.mozilla.org
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14" class="w-[14px] shring-0 translate-y-0.5">
<path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.16667" d="M10.5 7.58333v3.49997A1.1666 1.1666 0 0 1 9.33333 12.25H2.91667A1.16663 1.16663 0 0 1 1.75 11.0833V4.66667A1.16668 1.16668 0 0 1 2.91667 3.5h3.5M8.75 1.75h3.5v3.5M5.83337 8.16667 12.25 1.75" />
</svg>
</a>
</div>
</div>
<div class="hidden lg:flex items-center gap-[35px]">
<a href="https://www.mozilla.org/?utm_source=stateof.mozilla.org&utm_medium=referral&utm_campaign=2023" class="flex items-start justify-start gap-[5px] text-[16px]/[19px] font-medium hover:underline cursor-pointer font-title">
mozilla.org
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14" class="w-[14px] shring-0 translate-y-0.5">
<path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.16667" d="M10.5 7.58333v3.49997A1.1666 1.1666 0 0 1 9.33333 12.25H2.91667A1.16663 1.16663 0 0 1 1.75 11.0833V4.66667A1.16668 1.16668 0 0 1 2.91667 3.5h3.5M8.75 1.75h3.5v3.5M5.83337 8.16667 12.25 1.75" />
</svg>
</a>
<a href="http://foundation.mozilla.org/?utm_source=stateof.mozilla.org&utm_medium=referral&utm_campaign=2023" class="flex items-start justify-start gap-[5px] text-[16px]/[19px] font-medium hover:underline cursor-pointer font-title">
foundation.mozilla.org
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14" class="w-[14px] shring-0 translate-y-0.5">
<path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.16667"
d="M10.5 7.58333v3.49997A1.1666 1.1666 0 0 1 9.33333 12.25H2.91667A1.16663 1.16663 0 0 1 1.75 11.0833V4.66667A1.16668 1.16668 0 0 1 2.91667 3.5h3.5M8.75 1.75h3.5v3.5M5.83337 8.16667 12.25 1.75" />
</svg>
</a>
</div>
</div>
<script>
function nav() {
return {
menuOpen: false,
lastScrollTop: null,
isScrolled: false,
hideHeader: false,
toggleMenu() {
this.menuOpen = !this.menuOpen;
},
revealHeader() {
var lastScroll = window.pageYOffset;
if (lastScroll > this.lastScrollTop && lastScroll > 200) {
this.$el.style.transform = 'translateY(-100%)';
this.isScrolled = true;
this.hideHeader = true;
} else {
this.$el.style.transform = 'translateY(0)';
this.hideHeader = false;
}
if (lastScroll < 300 && this.isScrolled) {
this.isScrolled = false;
}
this.lastScrollTop = lastScroll <= 0 ? 0 : lastScroll;
},
}
}
</script>
</header>
<main x-data="modalCheck()" :class="showModal ? 'modalActive' : ''" class="z-10">
<!-- Hero -->
<section class="bg-[#CEEAEB] relative lg:min-h-screen flex items-start pt-[175px] pb-[175px] lg:pb-[60px] lg:pt-[100px] overflow-hidden lg:items-end" x-ref="hero" x-data="Hero()">
<div class="origin-top absolute top-0 left-1/2 -translate-x-1/2 h-full w-0.5 bg-[#111111] hidden md:block scale-y-0 duration-500 ease-out" :class="!inView && canAnimate ? 'scale-y-0' : 'scale-y-100'"></div>
<div class="container flex flex-col items-end justify-between h-full md:flex-row">
<div class="z-10 flex items-start justify-start w-full md:w-1/2 lg:w-5/12 md:pr-10 lg:pr-0">
<span class="origin-left -rotate-90 text-[24px] md:text-[28px] font-medium translate-y-[60px] md:translate-y-[70px] -translate-x-1 lg:translate-x-[15px] leading-none w-[20px] lg:w-auto transition duration-500 delay-100" :class="!inView && canAnimate ? 'opacity-0 -translate-y-4' : ''">2023</span>
<div class="flex flex-col items-start justify-start w-full">
<h1 class="text-[70px] lg:text-[81px] leading-none tracking-[-0.81px] text-[#111111] font-black mb-0 font-title transition duration-500 ease-out delay-200" :class="!inView && canAnimate ? '-translate-x-4 opacity-0' : ''">
State of
<br />
Mozilla
</h1>
<div class="w-full h-0.5 bg-[#111111] mt-[29px] mb-[34px] max-w-[440px] duration-300 ease-out delay-200 origin-left" :class="!inView && canAnimate ? 'scale-x-0' : ''"></div>
<h2 class="text-[24px]/[31px] tracking-[.48px] font-title transition duration-500 ease-out delay-300" :class="!inView && canAnimate ? '-translate-x-5 opacity-0' : ''">Mozilla was built to make <br class="hidden lg:inline-block">the internet better</h2>
<div class="mt-[50px] md:mt-[85px] mb-1 transition duration-500 ease-out delay-[400ms]" :class="!inView && canAnimate ? '-translate-y-5 opacity-0' : ''">
<button class="transition duration-150 ease-out cursor-pointer hover:translate-y-2" @click="nextSection()">
<svg width="47" height="48" viewBox="0 0 47 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M46.5455 24.7727L23.6364 47.6818L0.727271 24.7727L5.95454 19.5L19.7955 33.3409L19.7955 0.909086L27.4773 0.909086L27.4773 33.3409L41.2955 19.5L46.5455 24.7727Z"
fill="black" />
</svg>
<span class="sr-only">Scroll to the next section</span>
</button>
</div>
</div>
</div>
<a :href="article.hash" class="relative flex flex-col w-full mt-[100px] md:mt-0 md:w-1/2 lg:w-5/12 group">
<div class="w-[50vw] mb-6 hidden md:block translate-x-12 lg:translate-x-0 origin-center transition duration-500 ease-out will-change-transform [&>svg]:group-hover:scale-105 [&>svg]:transition [&>svg]:duration-500 [&>svg]:ease-out" :class="!inView && canAnimate ? 'scale-95 opacity-0' : ''" x-html="article.icon.rect"></div>
<div class="w-[85vw] sm:w-[65vw] absolute left-1/2 -translate-x-[45%] -translate-y-1/2 z-0 rotate-90 md:hidden transition duration-500 ease-out"
:class="!inView && canAnimate ? 'scale-95 opacity-0' : ''" x-html="article.icon.rect"></div>
<div class="flex flex-col md:mt-[20px] w-full md:w-10/12 self-end items-start justify-start z-10">
<h3 class="text-[36px]/[38px] tracking-[1.08px] font-semibold font-title transition duration-500 delay-300" x-html="article.title" :class="!inView && canAnimate ? '-translate-x-4 opacity-0' : ''"></h3>
<div class="flex items-start justify-start w-full gap-[22px] mt-[40px] transition duration-500 delay-500" :class="!inView && canAnimate ? '-translate-x-4 opacity-0' : ''">
<template x-if="article.author">
<img x-show="article.author" :src="article.author.image" alt="Head shot of INSERT NAME HERE" width="75" height="75" class="w-[75px] shrink-0 mix-blend-multiply"/>
</template>
<template x-if="article.author">
<div x-show="article.author" class="flex flex-col items-start justify-start w-full gap-5">
<div class="flex flex-col items-start justify-start w-full shrink-0">
<span class="flex items-end gap-[10px] w-full">
<h4 class="text-[16px]/[24px] tracking-[0.64px] font-semibold font-title shrink-0 inline-block" x-html="article.author.name"></h4>
<div class="w-full h-0.5 bg-black -translate-y-1.5"></div>
</span>
<h5 class="text-[14px]/[21px] font-normal font-title" x-html="article.author.job_title"></h5>
</div>
<div class="flex items-center gap-[5px]">
<span class="text-[16px]/[28px] font-bold relative font-title">
Read
<span class="bottom-0 left-0 w-full h-0.5 bg-black absolute transition duration-150 ease-out group-hover:scale-x-0 origin-right"></span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 12" class="w-[14px] transition duration-150 ease-out group-hover:translate-x-1">
<path fill="#000" d="M6.69318.36364 12.4205 6.0909 6.69318 11.8182 5.375 10.5114l3.46023-3.46026H.72727V5.13068h8.10796L5.375 1.67614 6.69318.36364Z" />
</svg>
</div>
</div>
</template>
<div x-show="!article.author" x-cloak class="flex items-center gap-[5px]">
<span class="text-[16px]/[28px] font-bold relative font-title">
Read
<span
class="bottom-0 left-0 w-full h-0.5 bg-black absolute transition duration-150 ease-out group-hover:scale-x-0 origin-right"></span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 12"
class="w-[14px] transition duration-150 ease-out group-hover:translate-x-1">
<path fill="#000"
d="M6.69318.36364 12.4205 6.0909 6.69318 11.8182 5.375 10.5114l3.46023-3.46026H.72727V5.13068h8.10796L5.375 1.67614 6.69318.36364Z" />
</svg>
</div>
</div>
</div>
</a>
</div>
<script>
function Hero() {
return {
article: null,
inView: false,
canAnimate: true,
init() {
// get articles from $store.articles that has the lead_article property
this.article = this.$store.articles.find(article => article.content.lead_article)?.content;
setTimeout(() => {
this.inView = true;
}, 300);
// if scroll is below the section when page loads, set inView to 1000 so that it doesn't trigger the animation
if (window.scrollY > this.$el.offsetTop) {
this.canAnimate = false;
this.inView = true;
}
},
nextSection() {
const nextSection = this.$refs.hero.nextElementSibling;
window.scrollTo({
top: nextSection.offsetTop,
behavior: 'smooth'
});
}
}
}
</script>
</section>
<!-- Downloads -->
<section class="bg-[#CEEAEB] border-t-2 border-b-2 border-[#111111] w-full overflow-hidden">
<div class="relative flex flex-col items-stretch justify-center w-full md:flex-row">
<div class="container px-5 lg:px-[60px] py-4 md:flex-row">
<div class="flex items-center w-full lg:w-10/12 mx-auto justify-center gap-5 lg:gap-[32px]">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 61 61" class="w-[55px] md:w-[60px] shrink-0">
<rect width="59" height="59" x="1" y="1" stroke="#000" stroke-width="2" rx="29.5" />
<path fill="#000"
d="M22.94 30.24a.99982.99982 0 0 0-.3951-.0142.99833.99833 0 0 0-.3697.1399.99811.99811 0 0 0-.2865.2723.99791.99791 0 0 0-.1587.362l-.49 1.94a.99965.99965 0 0 0 .1382.7457A.9999.9999 0 0 0 22 34.12c.2572.0634.5291.0222.756-.1147a.9998.9998 0 0 0 .454-.6153l.49-1.94c.0309-.1294.0358-.2637.0142-.395a1.00182 1.00182 0 0 0-.1399-.3697 1.0011 1.0011 0 0 0-.2723-.2866.99961.99961 0 0 0-.362-.1587Zm17 7.52-4-16a1.00022 1.00022 0 0 0-.3422-.5381A.99986.99986 0 0 0 35 21h-3a.99993.99993 0 0 0-.7071.2929A.99969.99969 0 0 0 31 22v16c0 .2652.1053.5196.2929.7071A.99993.99993 0 0 0 32 39h7c.1519.0008.3019-.033.4388-.0988.1369-.0659.257-.162.3512-.2812a1.0007 1.0007 0 0 0 .2053-.4055c.0364-.1491.038-.3047.0047-.4545h-.06ZM33 37V23h1.22l3.5 14H33Zm-8.6-12.58a.9996.9996 0 0 0-.3923-.0211.99931.99931 0 0 0-.3701.1315.99967.99967 0 0 0-.4576.6196l-.48 1.94a.9999.9999 0 0 0 .73 1.21h.24a.99976.99976 0 0 0 .6342-.2034c.1819-.1383.311-.3347.3658-.5566l.48-1.94a1.00068 1.00068 0 0 0-.1345-.7429A1.00016 1.00016 0 0 0 24.4 24.42ZM25.51 23h2c.2652 0 .5195-.1054.7071-.2929A1.0001 1.0001 0 0 0 28.51 22c0-.2652-.1054-.5196-.2929-.7071A1.00028 1.00028 0 0 0 27.51 21h-2a.99993.99993 0 0 0-.7071.2929A.99969.99969 0 0 0 24.51 22c0 .2652.1053.5196.2929.7071A.99993.99993 0 0 0 25.51 23Zm-3.27 14a1.00724 1.00724 0 0 0-1.6223-.912c-.21.1651-.3459.4068-.3777.672l-.24 1a1.00057 1.00057 0 0 0-.0096.4508c.0312.1491.0961.289.1896.4092a.99858.99858 0 0 0 .3646.2879c.1424.066.2984.0976.4554.0921h1c.2652.0318.5322-.043.7422-.208.2101-.1651.3459-.4068.3778-.672a1.00724 1.00724 0 0 0-.88-1.12ZM28 24.51a.99993.99993 0 0 0-.7071.2929A.99969.99969 0 0 0 27 25.51v2c0 .2652.1053.5196.2929.7071a.99993.99993 0 0 0 1.4142 0A1.0001 1.0001 0 0 0 29 27.51v-2c0-.2652-.1054-.5196-.2929-.7071A1.00028 1.00028 0 0 0 28 24.51Zm0 6a.99993.99993 0 0 0-.7071.2929A.99969.99969 0 0 0 27 31.51v2c0 .2652.1053.5196.2929.7071a.99993.99993 0 0 0 1.4142 0A1.0001 1.0001 0 0 0 29 33.51v-2c0-.2652-.1054-.5196-.2929-.7071A1.00028 1.00028 0 0 0 28 30.51Zm0 6a.99975.99975 0 0 0-.86.49H26a.99993.99993 0 0 0-.7071.2929A.99969.99969 0 0 0 25 38c0 .2652.1053.5196.2929.7071A.99993.99993 0 0 0 26 39h2c.2652 0 .5195-.1054.7071-.2929A1.0001 1.0001 0 0 0 29 38v-.49c0-.2652-.1054-.5196-.2929-.7071A1.00028 1.00028 0 0 0 28 36.51Z" />
</svg>
<span class="grow text-[16px]/[20px] lg:text-[20px]/[28px] font-normal">2022 Audited Financial Statement</span>
<a href="https://assets.mozilla.net/annualreport/2022/mozilla-fdn-2022-fs-final-0908.pdf" target="_blank"
class="bg-black text-white text-[16px] font-title font-bold leading-none px-4 lg:px-[24px] pt-[13px] pb-[12px] rounded hover:bg-[#86C5C8] transition duration-150 ease-out">
Download
</a>
</div>
</div>
<div class=" w-full h-0.5 md:w-0.5 top-1/2 -translate-y-1/2 bg-black md:h-full shrink-0 absolute left-1/2 -translate-x-1/2 md:-translate-y-0 md:top-0"></div>
<div class="container px-5 lg:px-[60px] py-4">
<div class="flex items-center w-full lg:w-10/12 mx-auto justify-center gap-5 lg:gap-[32px]">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 61 61" class="w-[55px] md:w-[60px] shrink-0">
<rect width="59" height="59" x="1" y="1" stroke="#000" stroke-width="2" rx="29.5" />
<path fill="#000"
d="M25.6 33.18a1.00411 1.00411 0 0 0-1.42 0 1.00411 1.00411 0 0 0 0 1.42l1.06 1.06c.093.0937.2036.1681.3254.2189a.99972.99972 0 0 0 .3846.0769c.132 0 .2627-.0261.3846-.0769.1218-.0508.2324-.1252.3254-.2189.0937-.093.1681-.2036.2189-.3254a.99972.99972 0 0 0 .0769-.3846c0-.132-.0261-.2627-.0769-.3846a1.00189 1.00189 0 0 0-.2189-.3254l-1.06-1.06Zm-3.79-5.4-1.06 1.06a.9101.9101 0 0 0-.19.26c-.144.0695-.2692.1726-.3652.3005-.0959.1279-.1598.277-.1863.4347a.99999.99999 0 0 0 .2815.8748l1.06 1.06c.093.0937.2036.1681.3254.2189a.99972.99972 0 0 0 .3846.0769c.132 0 .2627-.0261.3846-.0769.1218-.0508.2324-.1252.3254-.2189.0937-.093.1681-.2036.2189-.3254a.99972.99972 0 0 0 .0769-.3846c0-.132-.0261-.2627-.0769-.3846a1.00189 1.00189 0 0 0-.2189-.3254l-.36-.35.81-.81a1.0003 1.0003 0 0 0 .2397-.6891.99997.99997 0 0 0-.2921-.6685 1 1 0 0 0-.6686-.2921 1.0002 1.0002 0 0 0-.689.2397Zm4.19.79c-.2652 0-.5196.1054-.7071.2929A1.0001 1.0001 0 0 0 25 29.57v1.5c0 .2652.1054.5196.2929.7071s.4419.2929.7071.2929c.2652 0 .5196-.1054.7071-.2929A1.0001 1.0001 0 0 0 27 31.07v-1.5c0-.2652-.1054-.5196-.2929-.7071A1.0001 1.0001 0 0 0 26 28.57Zm13.71.72-5-5a.999.999 0 0 0-.5132-.2701.99954.99954 0 0 0-.5768.0601c-.1826.075-.3389.2024-.4493.3661A1.00074 1.00074 0 0 0 33 25v10c.001.1974.0604.3901.1707.5539.1104.1637.2667.2911.4493.3661.1187.056.2488.0834.38.08a1.0003 1.0003 0 0 0 .3839-.0742c.1218-.0498.2327-.1231.3261-.2158l5-5c.0937-.093.1681-.2036.2189-.3254A.99972.99972 0 0 0 40.0058 30c0-.132-.0261-.2627-.0769-.3846a1.00189 1.00189 0 0 0-.2189-.3254ZM35 32.59v-5.18L37.59 30 35 32.59ZM30 20c-.2652 0-.5196.1054-.7071.2929A1.0001 1.0001 0 0 0 29 21v18c0 .2652.1054.5196.2929.7071S29.7348 40 30 40c.2652 0 .5196-.1054.7071-.2929A1.0001 1.0001 0 0 0 31 39V21c0-.2652-.1054-.5196-.2929-.7071A1.0001 1.0001 0 0 0 30 20Zm-3.62 4.08a.99954.99954 0 0 0-.5768-.0601.999.999 0 0 0-.5132.2701l-.65.71a.99984.99984 0 0 0-.2908.705c0 .2642.1045.5176.2908.705.1846.1884.4362.2962.7.3a.99935.99935 0 0 0 .45-.11c.1502.0325.3059.0299.455-.0075.1491-.0375.2875-.1088.4046-.2084a1.0012 1.0012 0 0 0 .2703-.3661A.99956.99956 0 0 0 27 25.57V25a1.00074 1.00074 0 0 0-.1707-.5539 1.00043 1.00043 0 0 0-.4493-.3661Z" />
</svg>
<span class="grow text-[16px]/[20px] lg:text-[20px]/[28px] font-normal">2022 Form 990</span>
<a href="https://assets.mozilla.net/annualreport/2022/mozilla-fdn-990-ty22-public-disclosure.pdf" target="_blank"
class="bg-black text-white text-[16px] font-title font-bold leading-none px-4 lg:px-[24px] pt-[13px] pb-[12px] rounded hover:bg-[#86C5C8] transition duration-150 ease-out">
Download
</a>
</div>
</div>
</div>
</section>
<!-- Articles -->
<section class="relative w-full overflow-hidden bg-[#EEEEEE]" x-data="articles()">
<div class="w-0.5 bg-black h-full shrink-0 absolute left-1/2 -translate-x-1/2 top-0 z-10 hidden md:block"></div>
<!-- First row of 3 articles -->
<div class="hidden md:block relative border-b-2 border-black bg-[#EEEEEE] z-20" x-data="rowTwo()"
x-intersect.margin.-300px.once="sectionInView = true">
<div class="container relative">
<div class="flex justify-between md:gap-[25px] lg:gap-[65px]">
<template x-for="(article, index) in firstRow" :key="index">
<div class="relative z-20 flex-[33%] transition duration-500 ease-out will-change-[opacity]"
:class="!sectionInView && canAnimate ? 'opacity-0 scale-95' : ''"
x-bind:style="'order: ' + index + '; transition-delay:' + index + '00ms;'">
<a :href="article.hash" class="z-10 flex flex-col items-start justify-start w-full py-[65px] group">
<div class="flex flex-col items-start justify-start w-full">
<span class="flex items-end gap-[10px] w-full">
<span class="text-[16px]/[24px] tracking-[0.64px] font-semibold font-title shrink-0 inline-block"
x-html="article.author.name"></span>
<div class="w-full h-0.5 bg-black -translate-y-1.5"></div>
</span>
<span class="text-[14px]/[21px] font-normal font-title" x-html="article.author.job_title"></span>
</div>
<div
class="w-full flex items-center justify-center my-[30px] [&>svg]:w-full [&>svg]:transition [&>svg]:group-hover:scale-105 [&>svg]:duration-500 [&>svg]:ease-out"
x-html="article.icon.square"></div>
<h3 class="text-[24px]/[26px] tracking-[.48px] font-bold font-title" x-html="article.title"></h3>
<div x-cloak class="flex items-center mt-[25px] gap-[5px]">
<span class="text-[16px]/[28px] font-bold relative font-title">
Read
<span
class="bottom-0 left-0 w-full h-0.5 bg-black absolute transition duration-150 ease-out group-hover:scale-x-0 origin-right"></span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 12"
class="w-[14px] transition duration-150 ease-out group-hover:translate-x-1">
<path fill="#000"
d="M6.69318.36364 12.4205 6.0909 6.69318 11.8182 5.375 10.5114l3.46023-3.46026H.72727V5.13068h8.10796L5.375 1.67614 6.69318.36364Z" />
</svg>
</div>
</a>
</div>
</template>
<div class="w-0.5 order-[0] bg-black shrink-0 top-0 z-10"></div>
<div class="w-0.5 order-1 bg-black shrink-0 top-0 z-10"></div>
</div>
</div>
<script>
function rowTwo() {
return {
sectionInView: false,
canAnimate: true,
init() {
// if scroll is below the section when page loads, set inView to true so that it doesn't trigger the animation
if (window.scrollY > this.$el.offsetTop) {
this.canAnimate = false;
this.sectionInView = true;
}
}
}
}
</script>
</div>
<!-- Get first quote block -->
<div class="container" x-data="rowOne()" x-intersect.margin.-175px.once="sectionInView = true">
<div class="grid grid-cols-12">
<div class="relative z-0 hidden col-span-12 md:col-span-6 md:block">
<a :href="firstArticle.hash" class=" z-10 no-underline group flex flex-col items-start justify-start w-full py-[65px] md:pr-[65px]">
<div class="flex flex-col items-start justify-start w-full">
<span class="flex items-end gap-[10px] w-full">
<span class="text-[16px]/[24px] tracking-[0.64px] font-semibold font-title shrink-0 inline-block transition duration-500 ease-out" :class="!sectionInView && canAnimate ? 'opacity-0 -translate-x-4' : ''" x-html="firstArticle.author.name"></span>
<div class="w-full h-0.5 bg-black -translate-y-1.5 transition duration-300 ease-out delay-100 origin-left" :class="!sectionInView && canAnimate ? 'scale-x-0' : ''"></div>
</span>
<span class="text-[14px]/[21px] font-normal font-title transition duration-500 ease-out delay-100" :class="!sectionInView && canAnimate ? 'opacity-0 -translate-x-4' : ''" x-html="firstArticle.author.job_title"></span>
</div>
<div class="w-full flex items-end justify-end my-[30px] transition duration-500 ease-out will-change-[opacity] " :class="!sectionInView && canAnimate ? 'opacity-0 scale-95' : ''">
<div class="[&>svg]:w-[100vw] [&>svg]:md:w-[46.7vw] [&>svg]:group-hover:scale-105 [&>svg]:transition [&>svg]:duration-500 [&>svg]:ease-out" x-html="firstArticle.icon.rect"></div>
</div>
<h3 class="text-[24px]/[26px] tracking-[.48px] font-bold font-title transition duration-500 ease-out delay-300" :class="!sectionInView && canAnimate ? 'opacity-0 -translate-x-4' : ''" x-html="firstArticle.title"></h3>
<div class="duration-500 ease-out inline-blocktransition delay-[400ms]" :class="!sectionInView && canAnimate ? 'opacity-0 -translate-x-4' : ''">
<div x-cloak class="flex items-center mt-[25px] gap-[5px]">
<span class="text-[16px]/[28px] font-bold relative font-title">
Read
<span
class="bottom-0 left-0 w-full h-0.5 bg-black absolute transition duration-150 ease-out group-hover:scale-x-0 origin-right"></span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 12" class="w-[14px] transition duration-150 ease-out group-hover:translate-x-1">
<path fill="#000" d="M6.69318.36364 12.4205 6.0909 6.69318 11.8182 5.375 10.5114l3.46023-3.46026H.72727V5.13068h8.10796L5.375 1.67614 6.69318.36364Z" />
</svg>
</div>
</div>
</a>
</div>
<a href="#build-better" class="relative flex items-center justify-end col-span-12 py-[60px] md:py-10 md:col-span-6 no-underline group">
<div class="bg-[#89D5FF] group-hover:bg-[#a3defd] absolute top-0 left-1/2 -translate-x-1/2 md:-translate-x-0 md:left-0 w-screen md:w-[50vw] h-full z-[1] transition duration-500 ease-out delay-100" :class="!sectionInView && canAnimate ? 'opacity-0' : ''"></div>
<div class="relative z-10 flex-col items-end justify-start w-full pl-10 transition ease-out delay-500 md:w-11/12 lg:w-3/4">
<span class="absolute top-0 left-0 font-body text-[56px]/[55px] font-bold lg:-translate-x-10 transition duration-500 ease-out delay-200" :class="!sectionInView && canAnimate ? 'opacity-0 -translate-x-4' : ''">“</span>
<p class="font-title text-[24px]/[31px] font-normal tracking-[.48px] transition duration-500 ease-out delay-200" :class="!sectionInView && canAnimate ? 'opacity-0 -translate-y-4' : ''">
That openness and willingness to put the safety and interests of people first is how we built the trust we now enjoy.
And it is how we will approach new opportunities to set better standards for the internet.
</p>
<div class="flex items-center justify-start w-full gap-[22px] mt-[95px] transition duration-500 ease-out delay-[400ms]" :class="!sectionInView && canAnimate ? 'opacity-0' : ''">
<div class="bg-[#89D5FF] rounded-full">
<img src="/headshots/mitchell-baker.jpg" alt="Head shot of Mitchell Baker" width="75" height="75" loading="lazy" class="w-[75px] shrink-0 mix-blend-multiply grayscale rounded-full" />
</div>
<div class="flex flex-col items-start justify-start w-full gap-5">
<div class="flex flex-col items-start justify-start w-full shrink-0">
<span class="flex items-end gap-[10px] w-full">
<h4 class="text-[16px]/[24px] tracking-[0.64px] font-semibold font-title shrink-0 inline-block">
Mitchell Baker
</h4>
</span>
<h5 class="text-[14px]/[21px] font-normal font-title">CEO</h5>
</div>
</div>
</div>
</div>
</a>
</div>
<script>
function rowOne() {
return {
sectionInView: false,
canAnimate: true,
init() {
// if scroll is below the section when page loads, set inView to true so that it doesn't trigger the animation
if (window.scrollY > this.$el.offsetTop) {
this.canAnimate = false;
this.sectionInView = true;
}
}
}
}
</script>
</div>
<!-- Second row of 3 articles -->
<div class="hidden md:block relative border-t-2 border-b-2 border-black bg-[#EEEEEE] z-20" x-data="rowFour()"
x-intersect.margin.-300px.once="sectionInView = true">
<div class="container relative">
<div class="flex justify-between md:gap-[25px] lg:gap-[65px]">
<template x-for="(article, index) in thirdRow" :key="index">
<div class="relative z-20 flex-[33%] transition duration-500 ease-out will-change-[opacity]"
:class="!sectionInView && canAnimate ? 'opacity-0 scale-95' : ''"
x-bind:style="'order: ' + index + '; transition-delay:' + index + '00ms;'">
<a :href="article.hash" class="z-10 flex flex-col items-start justify-start w-full py-[65px] group">
<div class="flex flex-col items-start justify-start w-full">
<span class="flex items-end gap-[10px] w-full">
<span
class="text-[16px]/[24px] tracking-[0.64px] font-semibold font-title shrink-0 max-w-[100%] inline-block"
x-html="article.author.name"></span>
<div class="w-full h-0.5 bg-black -translate-y-1.5"></div>
</span>
<span class="text-[14px]/[21px] font-normal font-title" x-html="article.author.job_title"></span>
</div>
<div
class="w-full flex items-center justify-center my-[30px] [&>svg]:w-full [&>svg]:transition [&>svg]:group-hover:scale-105 [&>svg]:duration-500 [&>svg]:ease-out"
x-html="article.icon.square"></div>
<h3 class="text-[24px]/[26px] tracking-[.48px] font-bold font-title" x-html="article.title"></h3>
<div x-cloak class="flex items-center mt-[25px] gap-[5px]">
<span class="text-[16px]/[28px] font-bold relative font-title">
Read
<span
class="bottom-0 left-0 w-full h-0.5 bg-black absolute transition duration-150 ease-out group-hover:scale-x-0 origin-right"></span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 12"
class="w-[14px] transition duration-150 ease-out group-hover:translate-x-1">
<path fill="#000"
d="M6.69318.36364 12.4205 6.0909 6.69318 11.8182 5.375 10.5114l3.46023-3.46026H.72727V5.13068h8.10796L5.375 1.67614 6.69318.36364Z" />
</svg>
</div>
</a>
</div>
</template>
<div class="w-0.5 order-[0] bg-black shrink-0 top-0 z-10"></div>
<div class="w-0.5 order-1 bg-black shrink-0 top-0 z-10"></div>
</div>
</div>
<script>
function rowFour() {
return {
sectionInView: false,
canAnimate: true,
init() {
// if scroll is below the section when page loads, set inView to true so that it doesn't trigger the animation
if (window.scrollY > this.$el.offsetTop) {
this.canAnimate = false;
this.sectionInView = true;
}
}
}
}
</script>
</div>
<!-- Mobile Articles -->
<div class="block md:hidden relative border-y-2 border-black bg-[#EEEEEE] z-20" x-data="mobileRow"
x-intersect.margin.-175px.once="sectionInView = true">
<div class="relative">
<div class="relative flex w-full px-5 overflow-x-auto snap-x snap-mandatory no-scrollbar">
<template x-for="(article, index) in articles" :key="index">
<div
class="relative z-20 w-[80vw] max-w-[400px] shrink-0 first:boreder-l-2 border-x border-black snap-center transition duration-500 ease-out will-change-[opacity]"
:class="!sectionInView && canAnimate ? 'opacity-0 translate-x-5' : ''"
x-bind:style="'order: ' + index + '; transition-delay:' + index + '00ms;'">
<a :href="article.hash"
class="z-10 flex flex-col items-start h-full justify-center w-full py-[65px] px-5 sm:px-10 no-underline">
<template x-if="article.author">
<div class="flex flex-col items-start justify-start w-full">
<span class="flex items-end gap-[10px] w-full">
<span
class="text-[16px]/[24px] tracking-[0.64px] font-semibold font-title shrink-0 max-w-[80%] inline-block"
x-html="article.author.name"></span>
<div class="w-full shrink h-0.5 bg-black -translate-y-1.5"></div>
</span>
<span class="text-[14px]/[21px] font-normal font-title" x-html="article.author.job_title"></span>
</div>
</template>
<div class="w-full flex items-center justify-center my-[30px] [&>svg]:w-full" x-html="article.icon.square">
</div>
<h3 class="text-[24px]/[26px] tracking-[.48px] font-bold font-title" x-html="article.title"></h3>
<div x-cloak class="flex items-center mt-[25px] gap-[5px] group">
<span class="text-[16px]/[28px] font-bold relative font-title">
Read
<span
class="bottom-0 left-0 w-full h-0.5 bg-black absolute transition duration-150 ease-out group-hover:scale-x-0 origin-right"></span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 12"
class="w-[14px] transition duration-150 ease-out group-hover:translate-x-1">
<path fill="#000"
d="M6.69318.36364 12.4205 6.0909 6.69318 11.8182 5.375 10.5114l3.46023-3.46026H.72727V5.13068h8.10796L5.375 1.67614 6.69318.36364Z" />
</svg>
</div>
</a>
</div>
</template>
</div>
</div>
<script>
function mobileRow() {
return {
sectionInView: false,
canAnimate: true,
init() {
// if scroll is below the section when page loads, set inView to true so that it doesn't trigger the animation
if (window.scrollY > this.$el.offsetTop) {
this.canAnimate = false;
this.sectionInView = true;
}
}
}
}
</script>
</div>
</div>
<!-- Get second quote block -->
<div>
<div class="container" x-data="lastRow()" x-intersect.margin.-175px.once="sectionInView = true">
<div class="grid grid-cols-12">
<a href="#mission" class="relative flex items-center justify-start col-span-12 py-[60px] md:py-10 md:col-span-6 no-underline group">
<div
class="bg-[#ddecbc] group-hover:bg-[#dfe9cb] absolute top-0 right-1/2 translate-x-1/2 md:-translate-x-0 md:right-0 w-screen md:w-[50vw] h-full z-[1] md:border-t-0">
</div>
<div class="relative z-10 flex-col items-end justify-start w-full pl-10 md:w-11/12 lg:w-3/4">
<span
class="absolute top-0 left-0 font-body text-[56px]/[55px] font-bold lg:-translate-x-10 transition duration-500 ease-out delay-100"
:class="!sectionInView && canAnimate ? 'opacity-0' : ''">“</span>
<p class="font-title text-[24px]/[31px] font-normal tracking-[.48px] transition duration-500 ease-out delay-200"
:class="!sectionInView && canAnimate ? 'opacity-0 -translate-y-4' : ''">
Unlike traditional technology corporations, we intertwine business with purpose, seeing our operations as a means to
connect with people, enrich their lives, and contribute to a brighter internet future.
</p>
<div
class="flex items-center justify-start w-full gap-[22px] mt-[95px] transition duration-500 ease-out delay-[400ms] "
:class="!sectionInView && canAnimate ? 'opacity-0' : ''">
<div class="rounded-full bg-[#ddecbc]">
<img src="/headshots/mark-surman.jpeg" alt="Head shot of Mark Surman" width="75" height="75" loading="lazy" class="w-[75px] shrink-0 mix-blend-multiply grayscale rounded-full" />
</div>
<div class="flex flex-col items-start justify-start w-full gap-5">
<div class="flex flex-col items-start justify-start w-full shrink-0">
<span class="flex items-end gap-[10px] w-full">
<h4 class="text-[16px]/[24px] tracking-[0.64px] font-semibold font-title shrink-0 inline-block">Mark Surman</h4>
</span>
<h5 class="text-[14px]/[21px] font-normal font-title">President and Executive Director</h5>
</div>
</div>
</div>
</div>
</a>
<div class="relative z-0 hidden col-span-12 md:col-span-6 md:block">
<a :href="lastArticle.hash" class="z-10 no-underline group flex flex-col items-start justify-start w-full py-[65px] md:pl-[65px]">
<template x-if="lastArticle.author">
<div class="flex flex-col items-start justify-start w-full">
<span class="flex items-end gap-[10px] w-full">
<span
class="text-[16px]/[24px] tracking-[0.64px] font-semibold font-title shrink-0 inline-block transition duration-500 ease-out"
:class="!sectionInView && canAnimate ? 'opacity-0 -translate-x-4' : ''"
x-html="lastArticle.author.name"></span>
<div
class="w-full h-0.5 bg-black -translate-y-1.5 transition duration-300 ease-out delay-100 origin-left"
:class="!sectionInView && canAnimate ? 'scale-x-0' : ''"></div>
</span>
<span class="text-[14px]/[21px] font-normal font-title transition duration-500 ease-out delay-100"
:class="!sectionInView && canAnimate ? 'opacity-0 -translate-x-4' : ''"
x-html="lastArticle.author.job_title"></span>
</div>
</template>
<div
class="w-full flex items-end justify-start my-[30px] transition duration-500 ease-out will-change-[opacity] "
:class="!sectionInView && canAnimate ? 'opacity-0 scale-95' : ''">
<div
class="[&>svg]:w-[100vw] [&>svg]:md:w-[46.7vw] [&>svg]:group-hover:scale-105 [&>svg]:transition [&>svg]:duration-500 [&>svg]:ease-out"
x-html="lastArticle.icon.rect"></div>
</div>
<h3
class="text-[24px]/[26px] tracking-[.48px] font-bold font-title transition duration-500 ease-out delay-300"
:class="!sectionInView && canAnimate ? 'opacity-0 -translate-x-4' : ''" x-html="lastArticle.title"></h3>
<div class="duration-500 ease-out inline-blocktransition delay-[400ms]"
:class="!sectionInView && canAnimate ? 'opacity-0 -translate-x-4' : ''">
<div x-cloak class="flex items-center mt-[25px] gap-[5px]">
<span class="text-[16px]/[28px] font-bold relative font-title">
Read
<span
class="bottom-0 left-0 w-full h-0.5 bg-black absolute transition duration-150 ease-out group-hover:scale-x-0 origin-right"></span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 12"
class="w-[14px] transition duration-150 ease-out group-hover:translate-x-1">
<path fill="#000"
d="M6.69318.36364 12.4205 6.0909 6.69318 11.8182 5.375 10.5114l3.46023-3.46026H.72727V5.13068h8.10796L5.375 1.67614 6.69318.36364Z" />
</svg>
</div>
</div>
</a>
</div>
</div>
</div>
<script>
function lastRow() {
return {
sectionInView: false,
canAnimate: true,
init() {
// if scroll is below the section when page loads, set inView to true so that it doesn't trigger the animation
if (window.scrollY > this.$el.offsetTop) {
this.canAnimate = false;
this.sectionInView = true;
}
}
}
}
</script>
</div>
<!-- Last row of 3 articles -->
<div class="hidden md:block relative border-t-2 border-black bg-[#EEEEEE] z-20" x-data="rowFive()"
x-intersect.margin.-300px.once="sectionInView = true">
<div class="container relative">
<div class="flex justify-between md:gap-[25px] lg:gap-[65px]">
<template x-for="(article, index) in fourthRow" :key="index">
<div class="relative z-20 flex-[33%] transition duration-500 ease-out will-change-[opacity]"
:class="!sectionInView && canAnimate ? 'opacity-0 scale-95' : ''"
x-bind:style="'order: ' + index + '; transition-delay:' + index + '00ms;'">
<a :href="article.hash" class="z-10 flex flex-col items-start justify-start w-full py-[65px] group">
<div class="flex flex-col items-start justify-start w-full">
<span class="flex items-end gap-[10px] w-full">
<span
class="text-[16px]/[24px] tracking-[0.64px] font-semibold font-title shrink-0 max-w-[100%] inline-block"
x-html="article.author.name"></span>
<div class="w-full h-0.5 bg-black -translate-y-1.5"></div>
</span>
<span class="text-[14px]/[21px] font-normal font-title" x-html="article.author.job_title"></span>
</div>
<div
class="w-full flex items-center justify-center my-[30px] [&>svg]:w-full [&>svg]:transition [&>svg]:group-hover:scale-105 [&>svg]:duration-500 [&>svg]:ease-out"
x-html="article.icon.square"></div>
<h3 class="text-[24px]/[26px] tracking-[.48px] font-bold font-title" x-html="article.title"></h3>
<div x-cloak class="flex items-center mt-[25px] gap-[5px]">
<span class="text-[16px]/[28px] font-bold relative font-title">
Read
<span
class="bottom-0 left-0 w-full h-0.5 bg-black absolute transition duration-150 ease-out group-hover:scale-x-0 origin-right"></span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 12"
class="w-[14px] transition duration-150 ease-out group-hover:translate-x-1">
<path fill="#000"
d="M6.69318.36364 12.4205 6.0909 6.69318 11.8182 5.375 10.5114l3.46023-3.46026H.72727V5.13068h8.10796L5.375 1.67614 6.69318.36364Z" />
</svg>
</div>
</a>
</div>
</template>
<div class="w-0.5 order-[0] bg-black shrink-0 top-0 z-10"></div>
<div class="w-0.5 order-1 bg-black shrink-0 top-0 z-10"></div>
</div>
</div>
<script>
function rowFive() {
return {
sectionInView: false,
canAnimate: true,
init() {
// if scroll is below the section when page loads, set inView to true so that it doesn't trigger the animation
if (window.scrollY > this.$el.offsetTop) {
this.canAnimate = false;
this.sectionInView = true;
}
}
}
}
</script>
</div>
<script>
function articles() {
return {
firstArticle: null,
lastArticle: null,
articles: null,
firstRow: null,
secondRow: null,
thirdRow: null,
fourthRow: null,
quoteOne: null,
init() {
// Get the first article that has the width value of 'half'
this.firstArticle = this.$store.articles.filter(article => article.content.width === 'half')[0].content;
// get the article with Mitchell Baker as the author.name
// get the next article with the width value of 'half' that is not the first article
this.lastArticle = this.$store.articles.filter(article => article.content.width === 'half' && article.content.title !== this.firstArticle.title)[0].content;
// get all articles except the first article in the array
this.articles = this.$store.articles.map(article => article.content).slice(1);
// get three articles with the width value of 'third'
this.firstRow = this.articles.filter(article => article.width === 'third' && article.title !== this.firstArticle.title).slice(0, 3);
// get two articles that have the width value of 'half' and not the first article
this.secondRow = this.articles.filter(article => article.width === 'half' && article.title !== this.firstArticle.title).slice(0, 2);
// get three articles that have the width value of 'third' and not in this.firstRow
this.thirdRow = this.articles.filter(article => article.width === 'third' && article.title !== this.firstArticle.title && !this.firstRow.includes(article)).slice(0, 3);
// get three articles that have the width value of 'third' and not in this.firstRow or this.thirdRow
this.fourthRow = this.articles.filter(article => article.width === 'third' && article.title !== this.firstArticle.title && !this.firstRow.includes(article) && !this.thirdRow.includes(article)).slice(0, 3);
}
}
}
</script>
</section>
<!-- Video -->
<section class="bg-[#89D5FF] w-full aspect-[1.25] px-4 md:aspect-[1.8] lg:aspect-[2.25] flex items-center border-t-2 border-black relative z-0 overflow-hidden" x-data="video()">
<div class="container relative flex items-center justify-between" x-ref="content" x-intersect.margin.-175px.once="inView = true">
<div class="w-[95%] aspect-[2] lg:aspect-[3] bg-[#6fa2ff] absolute top-1/2 left-0 -translate-y-1/2 rounded-full transition duration-300 ease-out z-[-1]" :class="!inView && canAnimate ? 'opacity-0' : ''"></div>
<h2 class="font-title text-[16px]/[17px] tracking-[0.48px] sm:text-[36px]/[38px] md:tracking-[1.08px] font-bold w-5/12 sm:ml-10 md:w-4/12 md:ml-[65px] transition duration-300 ease-out delay-200 z-10" :class="!inView && canAnimate ? 'opacity-0 -translate-x-5' : ''">A message from Eric Muhlheim & Angela Plohman</h2>
<div class="w-[40vw] md:w-[33vw] -mr-8">
<div>
<svg class="w-full" viewBox="0 0 514 514" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect style="mix-blend-mode:overlay" class="transition duration-500 ease-out origin-right -translate-x-[66%] " :class="!inView && canAnimate ? 'opacity-0 scale-90' : ''" x="513.5" y="87.3018" width="338.453" height="338.453" rx="169.227" fill="#EEEEEE" />
<path style="mix-blend-mode:multiply" class="transition duration-500 ease-out origin-center" :class="!inView && canAnimate ? 'opacity-0 scale-90' : ''" fill-rule="evenodd" clip-rule="evenodd" d="M384.565 0L0 256.526L384.565 513.052L384.565 388.594L201.908 256.526L384.565 124.457L384.565 0Z" fill="#89D5FF" />
</svg>
</div>
</div>
<div class="absolute -translate-x-1/2 top-1/2 left-1/2 -translate-y-1/2 w-[30px] md:w-[66px] transition duration-300 ease-out delay-500" :class="!inView && canAnimate ? 'opacity-0 scale-90' : ''">
<button @click="play" class=" text-black hover:text-[#89D5FF] transition duration-150 ease-out hover:scale-110 w-full">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 66 76">
<path fill="currentColor" d="M66 38 0 76V0l66 38Z" />
</svg>
<span class="sr-only">Play Video</span>
</button>
</div>
</div>
<div class="absolute top-0 left-0 z-10 w-full h-full transition duration-300 ease-out bg-black cursor-pointer" :class="!playing ? 'opacity-0 pointer-events-none' : ''">
<div id="player" class="w-full h-full [&>iframe]:w-full [&>iframe]:h-full"></div>
</div>
<script>
function video() {
return {
playing: false,
inView: false,
canAnimate: true,
player: null,
graphic: '',
init() {
// if scroll is below the section when page loads, set inView to 1000 so that it doesn't trigger the animation
if (window.scrollY > this.$el.offsetTop) {
this.canAnimate = false;
this.lineInView = true;
}
window.YT.ready(() => {
this.player = new window.YT.Player('player', {
width: '100%',
height: '100%',
videoId: 'Y2Q4l0q_cqw',
host: 'https://www.youtube-nocookie.com',
});
});
},
play() {
this.playing = true;
this.player.playVideo();
}
}
}
</script>
</section>
<!-- Why Mozilla -->
<section class="bg-[#CEEAEB] relative py-[100px] md:pl-10 md:py-[150px] border-t-2 border-black flex flex-col gap-[100px] md:gap-[120px] overflow-hidden" x-data="testimonies()" x-intersect.margin.-50%="watchScroll">
<div x-ref="parentSection" class="absolute top-0 left-0 hidden w-10 h-full bg-white md:block">
<div x-ref="translateDiv" class="absolute top-0 left-0 w-full h-10 bg-black"></div>
</div>
<!-- Choose with Mozilla -->
<div class="flex flex-col items-start justify-start gap-8 px-0 md:container md:px-5 md:flex-row" x-intersect.margin.-175px.once='inView = 1'>
<div class="container md:!max-w-none md:mx-0 w-full px-5 md:px-0 md:w-1/3 lg:w-1/4 transition duration-500 ease-out" :class="inView < 1 && canAnimate ? 'opacity-0 -translate-y-5' : ''">
<h2 class="text-[36px]/[38px] font-title font-bold mb-[15px]">Why I <br/>choose Mozilla</h2>
<p class="font-body font-normal text-[16px]/[21px] tracking-[.32px]"></p>At Mozilla, we have big ambitions for the future, we want to build impactful products that are different — that are built with more respect for the people using them and help us explore new forms of openness. It’s going to take hard work that Mozilla is uniquely suited to take on. It’s why we’re here. It’s who we are. And it’s our future.</p>
</div>
<div class="hidden md:w-1/3 lg:w-1/4 md:block">
<div class="w-[68vw] border-black grid md:grid-cols-2 lg:grid-cols-3 testimonies__grid overflow-hidden pb-0.5">
<template x-for="(item, index) in whyMozilla">
<a :href="item.hash" class="bg-[#EEEEEE] p-5 xl:p-[65px] border-2 -mr-0.5 -mb-0.5 border-black transition duration-500 ease-out group" :class="inView < 1 && canAnimate ? 'opacity-0 scale-90' : ''" :style="'transition-delay:' + index + '00ms;'">
<div class="flex flex-col items-start justify-start gap-8">
<img :src="item.author.image" :alt="item.author.name"
class="object-contain object-center w-full transition duration-500 ease-out aspect-square grayscale bg-blend-darken group-hover:scale-105 group-hover:drop-shadow-lg" loading="lazy"
width="200" height="200">
<h3 x-html="item.author.name" class="text-[24px]/[26px] tracking-[.48px] font-bold font-title"></h3>
<div x-cloak :href="item.hash" class="flex items-center gap-[5px]">
<span class="text-[16px]/[28px] font-bold relative font-title">
Read
<span
class="bottom-0 left-0 w-full h-0.5 bg-black absolute transition duration-150 ease-out group-hover:scale-x-0 origin-right"></span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 12"
class="w-[14px] transition duration-150 ease-out group-hover:translate-x-1">
<path fill="#000"
d="M6.69318.36364 12.4205 6.0909 6.69318 11.8182 5.375 10.5114l3.46023-3.46026H.72727V5.13068h8.10796L5.375 1.67614 6.69318.36364Z" />
</svg>
</div>
</div>
</a>
</template>
</div>
</div>
<div class="w-full md:hidden">
<div class="relative flex w-full gap-5 pr-5 overflow-x-auto snap-x snap-mandatory no-scrollbar">
<div class="lead-block shrink-0"></div>
<template x-for="(item, index) in whyMozilla">
<a :href="item.hash" class="bg-[#EEEEEE] p-5 border-1 border-black snap-center shrink-0 max-w-[300px] w-[75%] transition duration-500 ease-out group" :class="inView < 1 && canAnimate ? 'opacity-0 translate-x-5' : ''" :style="'transition-delay:' + index + '00ms;'">
<div class="flex flex-col items-start justify-start gap-8">
<img :src="item.author.image" :alt="item.author.name"
class="object-cover object-center w-full transition duration-500 ease-out aspect-square grayscale bg-blend-darken group-hover:scale-105 group-hover:drop-shadow-lg" loading="lazy" width="200"
height="200">
<h3 x-html="item.author.name" class="text-[24px]/[26px] tracking-[.48px] font-bold font-title"></h3>
<div x-cloak class="flex items-center gap-[5px]">
<span class="text-[16px]/[28px] font-bold relative font-title">
Read
<span
class="bottom-0 left-0 w-full h-0.5 bg-black absolute transition duration-150 ease-out group-hover:scale-x-0 origin-right"></span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 12"
class="w-[14px] transition duration-150 ease-out group-hover:translate-x-1">
<path fill="#000"
d="M6.69318.36364 12.4205 6.0909 6.69318 11.8182 5.375 10.5114l3.46023-3.46026H.72727V5.13068h8.10796L5.375 1.67614 6.69318.36364Z" />
</svg>
</div>
</div>
</a>
</template>
</div>
</div>
</div>
<!-- Act with Mozilla -->
<div class="flex flex-col items-start justify-start gap-8 px-0 md:container md:px-5 md:flex-row" x-intersect.margin.-175px.once='inView = 2'>
<div class="container md:!max-w-none md:mx-0 w-full px-5 md:px-0 md:w-1/3 lg:w-1/4 transition duration-500 ease-out" :class="inView < 2 && canAnimate ? 'opacity-0 -translate-y-5' : ''">
<h2 class="text-[36px]/[38px] font-title font-bold mb-[15px]">Why I build <br />with Mozilla</h2>
<p class="font-body font-normal text-[16px]/[21px] tracking-[.32px]">Building Mozilla stems from a harmonious blend of philanthropic vision and commercial acumen, embodying the balance between social impact and sustainable growth. Driven by the mission to serve the public good. Two examples are how we build through our Venture Fund and the amazing projects funded through In Real Life.</p>
<p class="font-body font-normal text-[16px]/[21px] tracking-[.32px] mt-4">Mozilla Ventures, the impact fund from Mozilla, symbolizes our strategic commitment to investing in and supporting startups that resonate with our core values, as outlined in the Mozilla Manifesto. This initiative is designed to cultivate a generation of tech companies that value public benefit as much as profit, contributing to a healthier internet ecosystem.</p>
<p class="font-body font-normal text-[16px]/[21px] tracking-[.32px] mt-4">Mozilla's Africa Innovation Mradi’s 'In Real Life Fund' (IRL Fund) is a transformative initiative aimed at advancing digital and human rights in Africa, with a focus on Eastern and Southern Africa. The inaugural cohort of the IRL Fund, announced on Africa Day in 2023, includes a diverse range of projects. These projects range from creating virtual support networks for LGBTQI+ individuals to programs aimed at equipping women with digital skills.</p>
</div>
<div class="hidden md:w-1/3 lg:w-1/4 md:block">
<div class="w-[68vw] border-black grid md:grid-cols-2 lg:grid-cols-3 testimonies__grid overflow-hidden pb-0.5">
<template x-for="(item, index) in actMozilla">
<a :href="item.hash" class="bg-[#EEEEEE] p-5 xl:p-[65px] border-2 -mr-0.5 -mb-0.5 border-black transition duration-500 ease-out group" :class="inView < 2 && canAnimate ? 'opacity-0 scale-90' : ''" :style="'transition-delay:' + index + '00ms;'">
<div class="flex flex-col items-start justify-start gap-8">
<img :src="item.author.image" :alt="item.author.name"
class="object-contain object-center w-full aspect-square grayscale bg-blend-darken max-w-[200px] self-center transition duration-500 ease-out group-hover:scale-105 group-hover:drop-shadow-lg" loading="lazy"
width="200" height="200">
<h3 x-html="item.author.name" class="text-[24px]/[26px] tracking-[.48px] font-bold font-title"></h3>
<div x-cloak class="flex items-center gap-[5px]">
<span class="text-[16px]/[28px] font-bold relative font-title">
Read
<span
class="bottom-0 left-0 w-full h-0.5 bg-black absolute transition duration-150 ease-out group-hover:scale-x-0 origin-right"></span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 12"
class="w-[14px] transition duration-150 ease-out group-hover:translate-x-1">
<path fill="#000"
d="M6.69318.36364 12.4205 6.0909 6.69318 11.8182 5.375 10.5114l3.46023-3.46026H.72727V5.13068h8.10796L5.375 1.67614 6.69318.36364Z" />
</svg>
</div>
</div>
</a>
</template>
</div>
</div>
<div class="w-full md:hidden">
<div class="relative flex w-full gap-5 pr-5 overflow-x-auto snap-x snap-mandatory no-scrollbar">
<div class="lead-block shrink-0"></div>
<template x-for="(item, index) in actMozilla">
<a :href="item.hash" class="bg-[#EEEEEE] p-5 border-1 border-black snap-center shrink-0 max-w-[300px] w-[75%] transition duration-500 ease-out" :class="inView < 2 && canAnimate ? 'opacity-0 translate-x-5' : ''" :style="'transition-delay:' + index + '00ms;'">
<div class="flex flex-col items-start justify-start gap-8">
<img :src="item.author.image" :alt="item.author.name"
class="object-contain object-center w-full aspect-square grayscale bg-blend-darken" loading="lazy"
width="200" height="200">
<h3 x-html="item.author.name" class="text-[24px]/[26px] tracking-[.48px] font-bold font-title"></h3>
<div x-cloak :href="item.hash" class="flex items-center gap-[5px]">
<span class="text-[16px]/[28px] font-bold relative font-title">
Read
<span
class="bottom-0 left-0 w-full h-0.5 bg-black absolute transition duration-150 ease-out group-hover:scale-x-0 origin-right"></span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 12"
class="w-[14px] transition duration-150 ease-out group-hover:translate-x-1">
<path fill="#000"
d="M6.69318.36364 12.4205 6.0909 6.69318 11.8182 5.375 10.5114l3.46023-3.46026H.72727V5.13068h8.10796L5.375 1.67614 6.69318.36364Z" />
</svg>
</div>
</div>
</a>
</template>
</div>
</div>
</div>
<!-- Build with Mozilla -->
<div class="flex flex-col items-start justify-start gap-8 px-0 md:container md:px-5 md:flex-row" x-intersect.margin.-175px.once='inView = 3'>
<div class="container md:!max-w-none md:mx-0 w-full px-5 md:px-0 md:w-1/3 lg:w-1/4 transition duration-500 ease-out" :class="inView < 3 && canAnimate ? 'opacity-0 -translate-y-5' : ''">
<h2 class="text-[36px]/[38px] font-title font-bold mb-[15px]">Mozilla Fellows & <br/>Rise 25 Honorees</h2>
<p class="font-body font-normal text-[16px]/[21px] tracking-[.32px]">We’re proud to highlight Mozilla Fellows and Rise 25 honorees who are activists, open-source researchers, engineers, and technology policy experts who work on the front lines of our movement.</p>
</div>
<div class="hidden md:w-1/3 lg:w-1/4 md:block">
<div class="w-[68vw] border-black grid md:grid-cols-2 lg:grid-cols-3 testimonies__grid overflow-hidden pb-0.5">
<template x-for="(item, index) in buildMozilla">
<a :href="item.hash"
class="bg-[#EEEEEE] p-5 xl:p-[65px] border-2 -mr-0.5 -mb-0.5 border-black transition duration-500 ease-out group"
:class="inView < 1 && canAnimate ? 'opacity-0 scale-90' : ''" :style="'transition-delay:' + index + '00ms;'">
<div class="flex flex-col items-start justify-start gap-8">
<img :src="item.author.image" :alt="item.author.name"
class="object-cover object-top w-full transition duration-500 ease-out aspect-square grayscale bg-blend-darken group-hover:scale-105 group-hover:drop-shadow-lg"
loading="lazy" width="200" height="200">
<h3 x-html="item.author.name" class="text-[24px]/[26px] tracking-[.48px] font-bold font-title"></h3>
<div x-cloak :href="item.hash" class="flex items-center gap-[5px]">
<span class="text-[16px]/[28px] font-bold relative font-title">
Read
<span
class="bottom-0 left-0 w-full h-0.5 bg-black absolute transition duration-150 ease-out group-hover:scale-x-0 origin-right"></span>
</span>
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 13 12"
class="w-[14px] transition duration-150 ease-out group-hover:translate-x-1">
<path fill="#000"
d="M6.69318.36364 12.4205 6.0909 6.69318 11.8182 5.375 10.5114l3.46023-3.46026H.72727V5.13068h8.10796L5.375 1.67614 6.69318.36364Z" />
</svg>
</div>
</div>
</a>
</template>
</div>
</div>
<div class="w-full md:hidden">
<div class="relative flex w-full gap-5 pr-5 overflow-x-auto snap-x snap-mandatory no-scrollbar">
<div class="lead-block shrink-0"></div>
<template x-for="(item, index) in buildMozilla">
<a :href="item.hash"