-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
1600 lines (1468 loc) · 103 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">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>greenpill.network</title>
<meta name="description" content="Turning Degens to Regens (one green pill at a time)">
<!-- fonts and styles -->
<link rel="stylesheet" href="./styles.css" rel="stylesheet" />
<link rel="stylesheet" href="./custom-styles.css" rel="stylesheet" />
<link rel="preload" as="image" href="./src/images/footer-img-sequence/01.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Volkhov&display=swap"
rel="stylesheet">
<!-- icons -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" href="./src/images/greenpill-logo-large.png" type="image/png" sizes="150x150" />
<link rel="shortcut icon" href="favicon.ico">
<!-- twitter cards -->
<meta name="twitter:card" content="summary_large_image">
<!-- <meta name="twitter:site" content="@gitcoin"> -->
<meta name="twitter:creator" content="@owocki">
<meta name="twitter:title" content="greenpill.network">
<meta name="twitter:description" content="Turning Degens to Regens (one green pill at a time)">
<meta name="twitter:image" content="https://greenpill.network/src/images/greenpill-twitter-card.png">
<meta property="og:title" content="greenpill.network" />
<meta property="og:type" content="blockchain" />
<meta property="og:url" content="https://greenpill.network" />
<meta property="og:image" content="https://greenpill.network/src/images/greenpill-twitter-card.png" />
<meta property="og:description" content="Turning Degens to Regens (one green pill at a time)" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-DPDC59RT5Y"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-DPDC59RT5Y');
</script>
</head>
<body id=body class="relative">
<div class="font-inter">
<div id="logo" class="flex justify-start py-3 px-8 absolute top-0 left-0 right-0 cursor-pointer">
<div style="z-index:9999999;" class="flex gap-2 items-center fixed left-8 z-50"
onclick=";document.location.href='#body';">
<img src="./src/images/greenpill-logo.svg" width="40" height="40"
class="w-[25px] h-[25px] sm:w-[40px] sm:h-[40px]" />
<h1 class="text-sm sm:text-base text-green font-bold">Green Pill</h1>
</div>
</div>
<div class="transition-opacity duration-500 sm:min-h-[100vh] flex items-center justify-center">
<header class="flex justify-end py-3 px-8 absolute top-0 left-0 right-0"
style="position: fixed; top: 0em; z-index: 999;">
<div class="sm:hidden z-50 text-green hover:text-white cursor-pointer" id="mobile-menu-icon">
<svg role="img" fill="none" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<title>menu icon</title>
<path d="M4 6H20M4 12H20M4 18H20" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" />
</svg>
</div>
<nav class="absolute sm:static sm:block hidden right-0 top-0" id="mobile-menu">
<ul
class="relative z-40 flex gap-8 sm:flex-row flex-col sm:h-auto h-screen justify-center sm:w-auto w-[50vw] sm:items-start items-end sm:px-0 px-8 sm:bg-transparent bg-black bg-opacity-70 sm:backdrop-blur-none backdrop-blur-md">
<a href="#book">
<li class="sm:text-left text-right link !font-bold">Learn</li>
</a>
<a href="#participate" data-section="participate">
<li class="sm:text-left text-right link !font-bold">Participate</li>
</a>
<a href="#explore" data-section="explore">
<li class="sm:text-left text-right link !font-bold">Explore</li>
</a>
</ul>
</nav>
</header>
<!-- hero -->
<section class="pt-24 sm:py-12 flex justify-center items-center h-full sm:min-h-[80vh]">
<h1 class="font-volkhov">
<span class="uppercase text-yellow text-xl sm:text-4xl lg:text-6xl lg:leading-[1.3]">
Turning<br />
Degens<br />
to Regens<br />
</span>
<span class="text-xs sm:text-lg lg:text-3xl text-white">(one green pill at a time)</span>
</h1>
<img src="./src/images/footer-img-sequence/01.png" id="hero-img" width="329" height="329"
class="w-[150px] h-[150px] sm:w-[230px] sm:h-[230px] lg:w-[329px] lg:h-[329px] " />
</section>
</div>
<!-- map -->
<section id='network' class="transition-opacity duration-500 sm:min-h-screen">
<div class="sm:min-h-screen flex flex-col justify-evenly items-center py-12 sm:px-8">
<div>
<h2 class="font-volkhov text-xl lg:text-3xl text-yellow text-center mb-2 xl:mb-4">We’re building a
CoordiNation across Nations & Cultures.</h2>
<p class="text-center max-w-md m-auto mb-5 xl:mb-12">CoordiNation (noun): a network-society that exports
regenerative digital infrastructure to the world.</p>
</div>
<img src="./src/images/map.png" id="map" class="hidden" />
<div class="relative flex justify-center w-fit mx-auto mb-8" id="map-container">
<canvas id="canvas" width="758" height="400"
class="flex justify-center z-10 w-[758px] h-[400px] max-w-full h-auto"></canvas>
<a target="_blank"
class="map-selected-link hidden opacity-0 group scale-75 hover:translate-x-1 hover:translate-y-1 cursor-pointer transition-all duration-300 absolute top-0 left-0 right-0 bg-green rounded-full w-24 h-24 flex-col items-center justify-center z-30">
<p class="map-selected-name text-black text-center shrink-0"></p>
<span id="more-text"
class="group-hover:underline text-xs leading-tight text-black shrink-0 w-fit opacity-70">More -></span>
</a>
</div>
<p class="text-center text-sm">Don't see a chapter in your area? <a class="link !px-0"
href="https://bit.ly/greenpill-your-city" target="_blank">Start one.</a></p>
</div>
</section>
<!-- books -->
<section class="py-12 transition-opacity duration-500 x-100 pb-6 sm:min-h-screen flex items-center justify-center"
id="book">
<div class="flex xl:gap-10 gap-4 items-center flex-col">
<div class="max-w-[700px]">
<h2 class="font-volkhov text-xl lg:text-3xl text-yellow text-center mb-8">Learn > Books</h2>
<p class="text-center mb-2"><span class="font-bold">Ethereum Localism</span> is a celebration of the web3
movement exploring how we can fund what matters locally.</p>
<p class="text-center mb-2"><span class="font-bold">Grassroots Economics: Reflection & Practice</span> is an
exploration of capital allocation in Kenya, and how that could be
translated to DAOs.</p>
</div>
<div class="flex gap-6 xl:gap-[5%] justify-center relative">
<!-- Ethereum localism -->
<div class="flex flex-col items-center">
<img src="./src/images/ethereum-localism.png" width="200" height="300"
class="mb-4 w-auto max-h-[230px] 2xl:w-[200px] 2xl:h-[300px] 2xl:max-h-none"
alt="Ethereum Localism book cover" />
<div>
<div class="flex gap-4 justify-center items-start xl:flex-row flex-col mb-3">
<div
class="border border-green rounded-[20px] hover:border-[var(--mid-green)] hover:translate-x-[2px] hover:translate-y-[2px] transition-all duration-300 dropdown-btn divide-y divide-green flex flex-col">
<button class="secondary !border-none flex gap-4 justify-between items-center">
<span class="dropdown-btn-selected" data-link="./pdf/ethereum-localism.pdf">
Ebook
</span>
<!-- <span>
<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1L5.4 6.86667C6.2 7.93333 7.8 7.93333 8.6 6.86667L10 5L13 1" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span> -->
</button>
<!-- Softcover here -->
<!-- <div
class="divide-y border border-[var(--mid-green)] rounded-[20px] backdrop-blur-md divide-green fixed top-full left-0 right-0 bg-black bg-opacity-50 flex-col dropdown-btn-content hidden h-0 opacity-0 transition-all duration-300"
data-height="40">
<a class="link !font-bold dropdown-btn-option"
data-link="">
Softcover
</a>
</div> -->
</div>
<a class="dropdown-btn-shop" href="./pdf/ethereum-localism.pdf" target="_blank">
<button class="primary">Get it (free)</button>
</a>
</div>
</div>
</div>
<!-- Grassroots Economics -->
<div class="flex flex-col items-center">
<img src="./src/images/grassroots-economics.png" width="200" height="300"
class="mb-4 w-auto max-h-[230px] 2xl:w-[200px] 2xl:h-[300px] 2xl:max-h-none"
alt="Grassroots Economics book cover v2" />
<div>
<div class="flex gap-4 justify-center items-start xl:flex-row flex-col mb-3">
<div
class="border border-green rounded-[20px] hover:border-[var(--mid-green)] hover:translate-x-[2px] hover:translate-y-[2px] transition-all duration-300 dropdown-btn divide-y divide-green flex flex-col">
<button class="secondary !border-none flex gap-4 justify-between items-center">
<span class="dropdown-btn-selected" data-link="./pdf/grassroots-economics.pdf">
Ebook
</span>
<span>
<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1L5.4 6.86667C6.2 7.93333 7.8 7.93333 8.6 6.86667L10 5L13 1" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</button>
<div
class="divide-y border border-[var(--mid-green)] rounded-[20px] backdrop-blur-md divide-green fixed top-full left-0 right-0 bg-black bg-opacity-50 flex-col dropdown-btn-content hidden h-0 opacity-0 transition-all duration-300"
data-height="40">
<a class="link !font-bold dropdown-btn-option"
data-link="https://www.blurb.com/b/12316593-grassroots-economics">
Softcover
</a>
</div>
</div>
<a class="dropdown-btn-shop" href="./pdf/grassroots-economics.pdf" target="_blank">
<button class="primary">Get it (free)</button>
</a>
</div>
</div>
</div>
</div>
<div class="flex xl:gap-10 gap-4 items-center flex-col xl:pt-16 pt-6">
<div style="max-width: 700px;">
<p class="text-center mb-2"><span class="font-bold">Onchain Capital Allocation</span> is a practical journey
from present mechanisms to
future possibilities.</p>
</div>
</div>
<div class="flex gap-6 xl:gap-[5%] justify-center relative">
<!-- Onchain Capital Allocation v1-->
<div class="flex flex-col items-center">
<img src="./src/images/allobook-v1.png" width="200" height="300"
class="mb-4 w-auto max-h-[230px] 2xl:w-[200px] 2xl:h-[300px] 2xl:max-h-none"
alt="Onchain Capital Allocation book cover" />
<div>
<div class="flex gap-4 justify-center items-start xl:flex-row flex-col mb-3">
<div
class="border border-green rounded-[20px] hover:border-[var(--mid-green)] hover:translate-x-[2px] hover:translate-y-[2px] transition-all duration-300 dropdown-btn divide-y divide-green flex flex-col">
<button class="secondary !border-none flex gap-4 justify-between items-center">
<span class="dropdown-btn-selected" data-link="./pdf/onchain-capital-allocation-v1.pdf">
Ebook
</span>
<span>
<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1L5.4 6.86667C6.2 7.93333 7.8 7.93333 8.6 6.86667L10 5L13 1" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</button>
<div
class="divide-y border border-[var(--mid-green)] rounded-[20px] backdrop-blur-md divide-green fixed top-full left-0 right-0 bg-black bg-opacity-50 flex-col dropdown-btn-content hidden h-0 opacity-0 transition-all duration-300"
data-height="40">
<a class="link !font-bold dropdown-btn-option"
data-link="https://www.blurb.com/b/12052748-onchain-capital-allocation-handbook">
Softcover
</a>
</div>
</div>
<a class="dropdown-btn-shop" href="./pdf/onchain-capital-allocation-v1.pdf" target="_blank">
<button class="primary">Get it (free)</button>
</a>
</div>
</div>
</div>
<!-- Onchain Capital Allocation -->
<div class="flex flex-col items-center">
<img src="./src/images/allobook-v2.png" width="200" height="300"
class="mb-4 w-auto max-h-[230px] 2xl:w-[200px] 2xl:h-[300px] 2xl:max-h-none"
alt="Onchain Capital Allocation book cover v2" />
<div>
<div class="flex gap-4 justify-center items-start xl:flex-row flex-col mb-3">
<div
class="border border-green rounded-[20px] hover:border-[var(--mid-green)] hover:translate-x-[2px] hover:translate-y-[2px] transition-all duration-300 dropdown-btn divide-y divide-green flex flex-col">
<button class="secondary !border-none flex gap-4 justify-between items-center">
<span class="dropdown-btn-selected" data-link="./pdf/onchain-capital-allocation-v2.pdf">
Ebook
</span>
<span>
<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1L5.4 6.86667C6.2 7.93333 7.8 7.93333 8.6 6.86667L10 5L13 1" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</button>
<div
class="divide-y border border-[var(--mid-green)] rounded-[20px] backdrop-blur-md divide-green fixed top-full left-0 right-0 bg-black bg-opacity-50 flex-col dropdown-btn-content hidden h-0 opacity-0 transition-all duration-300"
data-height="40">
<a class="link !font-bold dropdown-btn-option"
data-link="https://www.blurb.com/b/12162768-onchain-capital-allocation-handbook-explorers-edi">
Softcover
</a>
</div>
</div>
<a class="dropdown-btn-shop" href="./pdf/onchain-capital-allocation-v2.pdf" target="_blank">
<button class="primary">Get it (free)</button>
</a>
</div>
</div>
</div>
</div>
<!-- -->
<div class="flex xl:gap-10 gap-4 items-center flex-col xl:pt-16 pt-6">
<div style="max-width: 700px;">
<p class="text-center mb-2 max-w-[550px]"><span class="font-bold">Impact DAOs (2022)</span> and <span
class="font-bold">Onchain Impact Networks (2024)</span> are about web3 projects
with a
positive impact on the world.</p>
</div>
</div>
<div class="flex gap-6 xl:gap-[5%] justify-center relative">
<!-- impact dao book -->
<div class="flex flex-col items-center">
<img src="./src/images/impactdao-cover.png" width="244" height="300"
class="mb-4 w-auto max-h-[230px] 2xl:w-[244px] 2xl:h-[300px] 2xl:max-h-none"
alt="ImpactDAOs book cover" />
<div>
<div class="flex gap-4 justify-center items-start xl:flex-row flex-col mb-3">
<div
class="border border-green rounded-[20px] hover:border-[var(--mid-green)] hover:translate-x-[2px] hover:translate-y-[2px] transition-all duration-300 dropdown-btn divide-y divide-green flex flex-col">
<button class="secondary !border-none flex gap-4 justify-between items-center">
<span class="dropdown-btn-selected" data-link="./pdf/ImpactDAO.pdf">
Ebook
</span>
<span>
<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1L5.4 6.86667C6.2 7.93333 7.8 7.93333 8.6 6.86667L10 5L13 1" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</button>
<div
class="divide-y border border-[var(--mid-green)] rounded-[20px] backdrop-blur-md divide-green fixed top-full left-0 right-0 bg-black bg-opacity-50 flex-col dropdown-btn-content hidden h-0 opacity-0 transition-all duration-300"
data-height="40">
<a class="link !font-bold dropdown-btn-option"
data-link="https://www.blurb.com/b/11120667-impactdaos">
Softcover
</a>
</div>
</div>
<a class="dropdown-btn-shop" href="./pdf/ImpactDAO.pdf" target="_blank">
<button class="primary">Get it (free)</button>
</a>
</div>
<div class="flex flex-wrap justify-center xl:flex-row flex-col items-center">
<button class="link sm:text-base text-sm p-0" id="impact-daos-modal-btn">
Translations
</button>
</div>
</div>
</div>
<!-- onchain impact networks book -->
<div class="flex flex-col items-center">
<img src="./src/images/o-impact-networks.jpg" width="240" height="300"
class="mb-4 w-auto max-h-[230px] 2xl:w-[244px] 2xl:h-[300px] 2xl:max-h-none"
alt="Onchain Impact Networks book cover" />
<div>
<div class="flex gap-4 justify-center items-start xl:flex-row flex-col mb-3">
<div
class="border border-green rounded-[20px] hover:border-[var(--mid-green)] hover:translate-x-[2px] hover:translate-y-[2px] transition-all duration-300 dropdown-btn divide-y divide-green flex flex-col">
<button class="secondary !border-none flex gap-4 justify-between items-center">
<span class="dropdown-btn-selected" data-link="./pdf/onchain-impact-networks.pdf">
Ebook
</span>
<!-- <span>
<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1L5.4 6.86667C6.2 7.93333 7.8 7.93333 8.6 6.86667L10 5L13 1" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg> -->
</span>
</button>
<!-- <div
class="divide-y border border-[var(--mid-green)] rounded-[20px] backdrop-blur-md divide-green fixed top-full left-0 right-0 bg-black bg-opacity-50 flex-col dropdown-btn-content hidden h-0 opacity-0 transition-all duration-300"
data-height="40">
<a class="link !font-bold dropdown-btn-option"
data-link="">
Softcover
</a>
</div> -->
</div>
<a class="dropdown-btn-shop" href="./pdf/onchain-impact-networks.pdf" target="_blank">
<button class="primary">Get it (free)</button>
</a>
</div>
</div>
</div>
</div>
<!-- greenpill -->
<div class="flex xl:gap-10 gap-4 items-center flex-col xl:pt-16 pt-6">
<div style="max-width: 700px;">
<p class="text-center"><span class="font-bold">Greenpill v0</span> is all about how crypto could regenerate
the world.</p>
</div>
</div>
<div class="flex gap-6 xl:gap-[5%] justify-center relative">
<!-- greenpill book -->
<div class="flex flex-col items-center">
<img src="./src/images/greenpill-cover.png"
class="mb-4 w-auto max-h-[230px] 2xl:w-[250px] 2xl:h-[300px] 2xl:max-h-none" width="250" height="300"
alt="Greenpill book cover" />
<div>
<div class="flex gap-4 justify-center items-start mb-3 xl:flex-row flex-col">
<div
class="relative border border-green rounded-[20px] hover:border-[var(--mid-green)] hover:translate-x-[2px] hover:translate-y-[2px] transition-all duration-300 dropdown-btn divide-y divide-green flex flex-col">
<button class="secondary !border-none flex gap-4 justify-between items-center">
<span class="dropdown-btn-selected" data-link="./pdf/green-pill.pdf">
Ebook
</span>
<span>
<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1L5.4 6.86667C6.2 7.93333 7.8 7.93333 8.6 6.86667L10 5L13 1" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</button>
<div
class="divide-y border border-[var(--mid-green)] rounded-[20px] backdrop-blur-md divide-green fixed top-full left-0 right-0 bg-black bg-opacity-50 flex-col dropdown-btn-content hidden h-0 opacity-0 transition-all duration-300"
data-height="120">
<a class="link !font-bold dropdown-btn-option"
data-link="https://www.blurb.com/bookstore/invited/9502747/c7ff865edc08edd6b595c5a9bf5bd613117953e7">
Softcover
</a>
<a class="link !font-bold dropdown-btn-option"
data-link="https://www.blurb.com/b/11078160-greenpilled-regenerative-cryptoeconomics">
Hardcover
</a>
<a class="link !font-bold dropdown-btn-option"
data-link="https://www.youtube.com/watch?v=7m0ufzqju_4&t=1s">
Audiobook
</a>
</div>
</div>
<a class="dropdown-btn-shop" href="./pdf/green-pill.pdf" target="_blank">
<button class="primary">Get it (free)</button>
</a>
</div>
<div class="flex flex-wrap justify-center xl:flex-row flex-col items-center">
<button class="link sm:text-base text-sm p-0" id="greenpill-modal-btn">
Translations
</button>
</div>
</div>
</div>
</div>
<!-- more books -->
<button id="more-books-btn"><a class="link flex items-center gap-2">Bonus book content <span>
<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1L5.4 6.86667C6.2 7.93333 7.8 7.93333 8.6 6.86667L10 5L13 1" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span></a></button>
<div id="more-books-content" class="hidden xl:gap-10 gap-4 items-center flex-col">
<!-- -->
<div class="flex xl:gap-10 gap-4 items-center flex-col xl:pt-16 pt-6">
<div style="max-width: 700px;">
<p class="text-center mb-2"><span class="font-bold">Future History of the Open Internet</span> is a
celebration of the history of Open
Source Software & how it proved that peer to peer coordination is powerful...</p>
<p class="text-center"><span class="font-bold">The 'Ethereum for Public Goods'</span> series is designed
to entertain & inspire
conversations about using web3 to fight Moloch - the God of Coordination Failure.</p>
</div>
</div>
<div class="flex gap-6 xl:gap-[5%] justify-center relative">
<!-- Future History of Open Internet -->
<div class="flex flex-col items-center">
<img src="./src/images/fhotoi.png" width="244" height="300"
class="mb-4 w-auto max-h-[230px] 2xl:w-[244px] 2xl:h-[300px] 2xl:max-h-none"
alt="Future History of Open Internet book cover" />
<div>
<div class="flex gap-4 justify-center items-start xl:flex-row flex-col mb-3">
<div
class="border border-green rounded-[20px] hover:border-[var(--mid-green)] hover:translate-x-[2px] hover:translate-y-[2px] transition-all duration-300 dropdown-btn divide-y divide-green flex flex-col">
<button class="secondary !border-none flex gap-4 justify-between items-center">
<span class="dropdown-btn-selected" data-link="./pdf/the-future-history-of-the-open-internet.pdf">
Ebook
</span>
<span>
<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1L5.4 6.86667C6.2 7.93333 7.8 7.93333 8.6 6.86667L10 5L13 1" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</button>
<div
class="divide-y border border-[var(--mid-green)] rounded-[20px] backdrop-blur-md divide-green fixed top-full left-0 right-0 bg-black bg-opacity-50 flex-col dropdown-btn-content hidden h-0 opacity-0 transition-all duration-300"
data-height="40">
<a class="link !font-bold dropdown-btn-option"
data-link="https://www.blurb.com/b/11120683-future-history-of-the-open-internet">
Softcover
</a>
</div>
</div>
<a class="dropdown-btn-shop" href="./pdf/the-future-history-of-the-open-internet.pdf" target="_blank">
<button class="primary">Get it (free)</button>
</a>
</div>
</div>
</div>
<!-- comic books -->
<div class="flex flex-col items-center">
<img src="./src/images/comic.png" width="244" height="300"
class="mb-4 w-auto max-h-[230px] 2xl:w-[244px] 2xl:h-[300px] 2xl:max-h-none"
alt="Comic Know book cover" />
<div>
<div class="flex gap-4 justify-center items-start xl:flex-row flex-col mb-3">
<div
class="border border-green rounded-[20px] hover:border-[var(--mid-green)] hover:translate-x-[2px] hover:translate-y-[2px] transition-all duration-300 dropdown-btn divide-y divide-green flex flex-col">
<button class="secondary !border-none flex gap-4 justify-between items-center">
<span class="dropdown-btn-selected" data-link="./pdf/Comic1.pdf">
Comic 1
</span>
<span>
<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1L5.4 6.86667C6.2 7.93333 7.8 7.93333 8.6 6.86667L10 5L13 1" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</button>
<div
class="divide-y border border-[var(--mid-green)] rounded-[20px] backdrop-blur-md divide-green fixed top-full left-0 right-0 bg-black bg-opacity-50 flex-col dropdown-btn-content hidden h-0 opacity-0 transition-all duration-300"
data-height="200">
<a class="link !font-bold dropdown-btn-option" data-link="./pdf/Comic2.pdf">
Comic 2
</a>
<a class="link !font-bold dropdown-btn-option" data-link="./pdf/Comic3.pdf">
Comic 3
</a>
<a class="link !font-bold dropdown-btn-option" data-link="./pdf/Comic4.pdf">
Comic 4
</a>
<a class="link !font-bold dropdown-btn-option" data-link="./pdf/Comic5.pdf">
Comic 5
</a>
<a class="link !font-bold dropdown-btn-option" data-link="./pdf/Comic6.pdf">
Comic 6
</a>
</div>
</div>
<a class="dropdown-btn-shop" href="./pdf/Comic1.pdf" target="_blank">
<button class="primary">Get it (free)</button>
</a>
</div>
</div>
</div>
</div>
<!-- -->
<div class="flex xl:gap-10 gap-4 items-center flex-col xl:pt-16 pt-6">
<div style="max-width: 700px;">
<p class="text-center mb-2"><span class="font-bold">Exploring MycoFi: Mycelial Design Patterns for Web3
and
Beyond</span> guides readers on
an underground exploration into the world wise web of mycelial networks.</p>
<p class="text-center"><span class="font-bold">Stuff Crypto OGs know v0</span> is teaching people how to
survive, thrive, &
regenerate in the crypto ecosystem.
</p>
</div>
</div>
<div class="flex gap-6 xl:gap-[5%] justify-center relative">
<!-- mycofi book -->
<div class="flex flex-col items-center">
<img src="./src/images/mycofi-cover.jpg" width="1000" height="1409"
class="mb-4 w-auto max-h-[230px] 2xl:w-[244px] 2xl:h-[300px] 2xl:max-h-none"
alt="Exploring MyCoFi - Mycelial Design Patterns for Web3 and Beyond" />
<div>
<div class="flex gap-4 justify-center items-start mb-3 xl:flex-row flex-col">
<div
class="relative border border-green rounded-[20px] hover:border-[var(--mid-green)] hover:translate-x-[2px] hover:translate-y-[2px] transition-all duration-300 dropdown-btn divide-y divide-green flex flex-col">
<button class="secondary !border-none flex gap-4 justify-between items-center">
<span class="dropdown-btn-selected" data-link="./pdf/mycofi.pdf">
Ebook
</span>
<span>
<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1L5.4 6.86667C6.2 7.93333 7.8 7.93333 8.6 6.86667L10 5L13 1" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</button>
<div
class="divide-y border border-[var(--mid-green)] rounded-[20px] backdrop-blur-md divide-green fixed top-full left-0 right-0 bg-black bg-opacity-50 flex-col dropdown-btn-content hidden h-0 opacity-0 transition-all duration-300"
data-height="80">
<a class="link !font-bold dropdown-btn-option"
data-link="https://www.blurb.com/b/11907108-exploring-mycofi-mycelial-design-patterns-for-web">
Softcover
</a>
<a class="link !font-bold dropdown-btn-option" data-link="https://mycofi.art/">
Mint
</a>
</div>
</div>
<a class="dropdown-btn-shop" href="./pdf/mycofi.pdf" target="_blank">
<button class="primary">Get it (free)</button>
</a>
</div>
<div class="flex flex-wrap justify-center xl:flex-row flex-col items-center">
<button class="link sm:text-base text-sm p-0" id="mycofi-modal-btn">
Translations
</button>
</div>
</div>
</div>
<!-- stuff crypto ogs know book -->
<div class="flex flex-col items-center">
<img src="./src/images/scok.png" width="244" height="300"
class="mb-4 w-auto max-h-[230px] 2xl:w-[244px] 2xl:h-[300px] 2xl:max-h-none"
alt="Stuff Crypto Ogs Know book cover" />
<div>
<div class="flex gap-4 justify-center items-start xl:flex-row flex-col mb-3">
<div
class="border border-green rounded-[20px] hover:border-[var(--mid-green)] hover:translate-x-[2px] hover:translate-y-[2px] transition-all duration-300 dropdown-btn divide-y divide-green flex flex-col">
<button class="secondary !border-none flex gap-4 justify-between items-center">
<span class="dropdown-btn-selected" data-link="./pdf/Crypto_OG_Book.pdf">
Ebook
</span>
<span>
<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 1L5.4 6.86667C6.2 7.93333 7.8 7.93333 8.6 6.86667L10 5L13 1" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</span>
</button>
<div
class="divide-y border border-[var(--mid-green)] rounded-[20px] backdrop-blur-md divide-green fixed top-full left-0 right-0 bg-black bg-opacity-50 flex-col dropdown-btn-content hidden h-0 opacity-0 transition-all duration-300"
data-height="40">
<a class="link !font-bold dropdown-btn-option"
data-link="https://www.blurb.com/b/11476889-stuff-crypto-ogs-know">
Softcover
</a>
</div>
</div>
<a class="dropdown-btn-shop" href="./pdf/Crypto_OG_Book.pdf" target="_blank">
<button class="primary">Get it (free)</button>
</a>
</div>
</div>
</div>
</div>
<!-- -->
<div class="flex xl:gap-10 gap-4 items-center flex-col xl:pt-16 pt-6">
<div style="max-width: 700px;">
<p class="text-center mb-2"><span class="font-bold">Local regen guide</span> is focused on teaching
engaging new ways to regenerate your local community. We expect these
guides to be pivotal in cross-pollinating engagement modalities across chapters.
</p>
</div>
</div>
<div class="flex gap-6 xl:gap-[5%] justify-center relative">
<!-- local regen guide -->
<div class="flex flex-col items-center">
<img src="./src/images/local-regen-guide.jpeg" width="1000" height="1409"
style="border: 1px solid var(--yellow);"
class="mb-4 w-auto max-h-[230px] 2xl:w-[244px] 2xl:h-[300px] 2xl:max-h-none" alt="Local Regen Guide" />
<div>
<div class="flex gap-4 justify-center items-start mb-3 xl:flex-row flex-col">
<div
class="relative border border-green rounded-[20px] transition-all duration-300 dropdown-btn divide-y divide-green flex flex-col">
<button class="secondary !border-none flex gap-4 justify-between items-center pointer-events-none">
<span class="dropdown-btn-selected" data-link="/pdf/local-regen-guide.pdf">
Ebook
</span>
</button>
</div>
<a class="dropdown-btn-shop" href="/pdf/local-regen-guide.pdf" target="_blank">
<button class="primary">Get it (free)</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- podcast -->
<section id="podcast" class="transition-opacity duration-500 x-100 sm:min-h-screen relative">
<div
class="pb-24 pt-8 max-w-3xl sm:min-h-screen flex gap-4 sm:gap-[10%] items-center justify-center m-auto flex-col sm:flex-row">
<!-- parallax bg elements -->
<img data-speed="-1.5" data-movex="500" src="./src/images/background/bg-el1.png" width="100" height="100" alt=""
class="absolute z-0 top-[50vh] parallax-bg" />
<img data-speed="-1.3" data-movex="400" src="./src/images/background/bg-el3.png" width="60" height="120" alt=""
class="absolute z-0 top-[10vh] left-[15vw] parallax-bg" />
<img data-speed="-1.1" data-movex="-300" src="./src/images/background/bg-el2.png" width="100" height="100"
alt="" class="absolute z-0 top-[70vh] right-0 parallax-bg" />
<div class="flex flex-col gap-6 z-10">
<h2 class="font-volkhov text-xl lg:text-3xl text-yellow">Learn > Podcast </h2>
<p>The greenpill podcast dives deeper into the regenerative crypto-economic frontier.</p>
<p>With new episodes Tuesday and Thursday, the greenpill podcast is your go-to source for education,
inspiration, &
hope.</p>
<div class="w-full">
<div class="flex flex-wrap gap-4 items-center sm:justify-start justify-center">
<a href="https://pod.link/1609313639" target="_blank"><button class="primary">Listen Anywhere</button></a>
<a href="https://www.youtube.com/@Green_Pill_Podcast" target="_blank">
<button class="secondary">View on Youtube</button>
</a>
</div>
<a class="link text-center block"
href="https://twitter.com/intent/tweet?text=@greenpillnet%20@owocki%20you%20should%20have%20x%20on%20greenpill"
target="_blank">
Recommend a guest
</a>
</div>
</div>
<img class="hover" src="./src/images/podcast-cover.png" width="300" height="300"
class="xl:w-[300px] xl:h-[300px] w-[230px] h-[230px]" alt="greenpill podcast cover"
onclick="document.location.href='https://www.youtube.com/@Green_Pill_Podcast';" />
</div>
</section>
<!-- resources -->
<section id="participate" class="pb-24 pt-12 sm:min-h-screen max-w-4xl m-auto relative">
<!-- parallax bg elements -->
<img data-speed="-1.5" data-movex="300" src="./src/images/background/bg-el1.png" width="100" height="100" alt=""
class="absolute z-0 top-[30vh] parallax-bg" />
<img data-speed="-1.3" data-movex="950" src="./src/images/background/bg-el3.png" width="60" height="120" alt=""
class="absolute z-0 top-[10vh] left-[15vw] parallax-bg" />
<img data-speed="-1.1" data-movex="-200" src="./src/images/background/bg-el2.png" width="100" height="100" alt=""
class="absolute z-0 top-[70vh] right-0 parallax-bg" />
<h2 class="font-volkhov text-xl lg:text-3xl text-yellow mb-4">Participate</h2>
<div class="flex gap-2 sm:gap-[10%] justify-center relative h-fit">
<div class="divide-y divide-yellow backdrop-blur-md px-4 flex flex-col gap-6">
<!-- beginner -->
<div
class="flex sm:flex-row flex-col-reverse sm:items-center justify-between gap-4 px-2 sm:px-8 sm:py-0 py-6 rounded-2xl">
<div class="sm:py-6 py-2 sm:gap-6 gap-2 flex flex-col justify-center">
<h3 class="text-lg sm:text-2xl text-yellow mb-6">
Beginner
</h3>
<div class="content flex flex-col gap-2 sm:text-lg text-sm">
<p class="">Education: </p>
<div class="flex gap-2 items-center text-green hover:text-[var(--mid-green)] group">
<svg class="group-hover:translate-x-1 transition-all duration-300" width="11" height="8"
viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.5 3.5C0.223858 3.5 0 3.72386 0 4C0 4.27614 0.223858 4.5 0.5 4.5V3.5ZM10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0.5 4.5H10V3.5H0.5V4.5Z"
fill="currentColor" />
</svg>
<a href="https://pod.link/1609313639" target="_blank">Listen to the podcast</a>
</div>
<div class="flex gap-2 items-center text-green hover:text-[var(--mid-green)] group">
<svg class="group-hover:translate-x-1 transition-all duration-300" width="11" height="8"
viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.5 3.5C0.223858 3.5 0 3.72386 0 4C0 4.27614 0.223858 4.5 0.5 4.5V3.5ZM10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0.5 4.5H10V3.5H0.5V4.5Z"
fill="currentColor" />
</svg>
<a href="https://www.youtube.com/@Green_Pill_Podcast" target="_blank">Check out the Youtube</a>
</div>
<div class="flex gap-2 items-center text-green hover:text-[var(--mid-green)] group">
<svg class="group-hover:translate-x-1 transition-all duration-300" width="12" height="8"
viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.5 3.5C0.223858 3.5 0 3.72386 0 4C0 4.27614 0.223858 4.5 0.5 4.5V3.5ZM10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0.5 4.5H10V3.5H0.5V4.5Z"
fill="currentColor" />
</svg>
<a href="#book">Read/share the book(s)</a>
</div>
<div class="flex gap-2 items-center text-green hover:text-[var(--mid-green)] group">
<svg class="group-hover:translate-x-1 transition-all duration-300" width="12" height="8"
viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.5 3.5C0.223858 3.5 0 3.72386 0 4C0 4.27614 0.223858 4.5 0.5 4.5V3.5ZM10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0.5 4.5H10V3.5H0.5V4.5Z"
fill="currentColor" />
</svg>
<a href="https://app.charmverse.io/greenpill-network/taking-the-greenpill-4871995012783201"
target="_blank">Taking The Greenpill</a>
</div>
<div class="flex gap-2 items-center text-green hover:text-[var(--mid-green)] group">
<svg class="group-hover:translate-x-1 transition-all duration-300" width="12" height="8"
viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.5 3.5C0.223858 3.5 0 3.72386 0 4C0 4.27614 0.223858 4.5 0.5 4.5V3.5ZM10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0.5 4.5H10V3.5H0.5V4.5Z"
fill="currentColor" />
</svg>
<a href="https://app.charmverse.io/greenpill-network/" target="_blank">Charmverse Workspace</a>
</div>
<p class="">Socials: </p>
<div class="flex gap-2 items-center text-green hover:text-[var(--mid-green)] group">
<svg class="group-hover:translate-x-1 transition-all duration-300" width="11" height="8"
viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.5 3.5C0.223858 3.5 0 3.72386 0 4C0 4.27614 0.223858 4.5 0.5 4.5V3.5ZM10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0.5 4.5H10V3.5H0.5V4.5Z"
fill="currentColor" />
</svg>
<a href="https://discord.gg/greenpill">
Join the Discord
</a>
</div>
<div class="flex gap-2 items-center text-green hover:text-[var(--mid-green)] group">
<svg class="group-hover:translate-x-1 transition-all duration-300" width="11" height="8"
viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.5 3.5C0.223858 3.5 0 3.72386 0 4C0 4.27614 0.223858 4.5 0.5 4.5V3.5ZM10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0.5 4.5H10V3.5H0.5V4.5Z"
fill="currentColor" />
</svg>
<a href="https://hub.greenpill.network">
Join the Hub
</a>
</div>
<div class="flex gap-2 items-center text-green hover:text-[var(--mid-green)] group">
<svg class="group-hover:translate-x-1 transition-all duration-300" width="11" height="8"
viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.5 3.5C0.223858 3.5 0 3.72386 0 4C0 4.27614 0.223858 4.5 0.5 4.5V3.5ZM10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0.5 4.5H10V3.5H0.5V4.5Z"
fill="currentColor" />
</svg>
<a href="https://t.me/+g9TM8i7GpxAzMGUx">
Join the Telegram
</a>
</div>
<div class="flex gap-2 items-center text-green hover:text-[var(--mid-green)] group">
<svg class="group-hover:translate-x-1 transition-all duration-300" width="11" height="8"
viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.5 3.5C0.223858 3.5 0 3.72386 0 4C0 4.27614 0.223858 4.5 0.5 4.5V3.5ZM10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0.5 4.5H10V3.5H0.5V4.5Z"
fill="currentColor" />
</svg>
<a href="https://warpcast.com/~/channel/green-pill">
Follow the Warpcast Channel
</a>
</div>
<div class="flex gap-2 items-center text-green hover:text-[var(--mid-green)] group">
<svg class="group-hover:translate-x-1 transition-all duration-300" width="11" height="8"
viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.5 3.5C0.223858 3.5 0 3.72386 0 4C0 4.27614 0.223858 4.5 0.5 4.5V3.5ZM10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0.5 4.5H10V3.5H0.5V4.5Z"
fill="currentColor" />
</svg>
<a href="https://twitter.com/greenpillnet">
Follow the Twitter
</a>
</div>
</div>
</div>
<img src="./src/images/resource1.png"
class="w-[80px] h-[80px] sm:w-[250px] sm:h-[250px] 2xl:w-[434px] 2xl:h-[434px]" alt="" width="434"
height="434" />
</div>
<!-- intermediate -->
<div
class="flex sm:flex-row flex-col-reverse sm:items-center justify-between gap-4 px-2 sm:px-8 sm:py-0 py-6 rounded-2xl">
<div class="sm:py-6 py-2 sm:gap-6 gap-2 flex flex-col justify-center">
<h3 class="text-lg sm:text-2xl text-yellow mb-6">
Intermediate
</h3>
<div class="content flex flex-col gap-2 sm:text-lg text-sm">
<div class="flex gap-2 items-center text-green hover:text-[var(--mid-green)] group">
<svg class="group-hover:translate-x-1 transition-all duration-300" width="11" height="8"
viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.5 3.5C0.223858 3.5 0 3.72386 0 4C0 4.27614 0.223858 4.5 0.5 4.5V3.5ZM10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0.5 4.5H10V3.5H0.5V4.5Z"
fill="currentColor" />
</svg>
<a href="#network">
Join a local chapter
</a>
</div>
<div class="flex gap-2 items-center text-green hover:text-[var(--mid-green)] group">
<svg class="group-hover:translate-x-1 transition-all duration-300" width="11" height="8"
viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.5 3.5C0.223858 3.5 0 3.72386 0 4C0 4.27614 0.223858 4.5 0.5 4.5V3.5ZM10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0.5 4.5H10V3.5H0.5V4.5Z"
fill="currentColor" />
</svg>
<a href="https://app.charmverse.io/greenpill-network/guilds-29059086676991">
Join a guild
</a>
</div>
<div class="flex gap-2 items-center text-green hover:text-[var(--mid-green)] group">
<svg class="group-hover:translate-x-1 transition-all duration-300" width="11" height="8"
viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.5 3.5C0.223858 3.5 0 3.72386 0 4C0 4.27614 0.223858 4.5 0.5 4.5V3.5ZM10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0.5 4.5H10V3.5H0.5V4.5Z"
fill="currentColor" />
</svg>
<p style="color:white">
Join an ImpactDAO (
<a class="link" style="padding: 0px!important" href="https://greenpill.network/pdf/ImpactDAO.pdf">
ImpactDAO Book
</a> ,
<a class="link" style="padding: 0px!important" href="https://impactdaos.xyz/daos"> ImpactDAOs.xyz
directory
</a>
)
</p>
</div>
<p class="pl-5">Tell a friend.</p>
</div>
</div>
<img src="./src/images/resource2.png"
class="w-[80px] h-[80px] sm:w-[250px] sm:h-[250px] 2xl:w-[434px] 2xl:h-[434px]" alt="" width="434"
height="434" />
</div>
<!-- advanced -->
<div
class="flex sm:flex-row flex-col-reverse sm:items-center justify-between gap-4 px-2 sm:px-8 sm:py-0 py-6 rounded-2xl">
<div class="sm:py-6 py-2 sm: gap-6gap-2 flex flex-col justify-center">
<h3 class="text-lg sm:text-2xl text-yellow mb-6">
Advanced
</h3>
<div class="content flex flex-col gap-2 sm:text-lg text-xs">
<div class="flex gap-2 items-center text-green hover:text-[var(--mid-green)] group">
<svg class="group-hover:translate-x-1 transition-all duration-300" width="11" height="8"
viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.5 3.5C0.223858 3.5 0 3.72386 0 4C0 4.27614 0.223858 4.5 0.5 4.5V3.5ZM10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0.5 4.5H10V3.5H0.5V4.5Z"
fill="currentColor" />
</svg>
<a href="https://forms.gle/dMKCDqQR1ACXQ2CZ9">Write a local regen guide</a>
</div>
<div class="flex gap-2 items-center text-green hover:text-[var(--mid-green)] group">
<svg class="group-hover:translate-x-1 transition-all duration-300" width="11" height="8"
viewBox="0 0 11 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M0.5 3.5C0.223858 3.5 0 3.72386 0 4C0 4.27614 0.223858 4.5 0.5 4.5V3.5ZM10.3536 4.35355C10.5488 4.15829 10.5488 3.84171 10.3536 3.64645L7.17157 0.464466C6.97631 0.269204 6.65973 0.269204 6.46447 0.464466C6.2692 0.659728 6.2692 0.976311 6.46447 1.17157L9.29289 4L6.46447 6.82843C6.2692 7.02369 6.2692 7.34027 6.46447 7.53553C6.65973 7.7308 6.97631 7.7308 7.17157 7.53553L10.3536 4.35355ZM0.5 4.5H10V3.5H0.5V4.5Z"
fill="currentColor" />
</svg>
<a href="https://bit.ly/greenpill-your-city">Start a local chapter</a>
</div>
<p class="pl-5">Start an ImpactDAO</p>
<p class="pl-5">Distribute the book/podcast/<a
href="https://gov.gitcoin.co/t/make-your-own-green-pills/10521">meme</a>.</p>
<p class="pl-5">Organize a teachback (meetup or written).</p>
<p class="pl-5">Run a regenerative experiment in your local community.</p>
<p class="pl-5">Come up with your own way of contributing.</p>
</div>
</div>
<img src="./src/images/resource3.png"
class="w-[80px] h-[80px] sm:w-[250px] sm:h-[250px] 2xl:w-[434px] 2xl:h-[434px]" alt="" width="434"
height="434" />
</div>
<!-- partner -->
<div
class="flex sm:flex-row flex-col-reverse sm:items-center justify-between gap-4 px-2 sm:px-8 sm:py-0 py-6 rounded-2xl">
<div class="sm:py-6 py-2 sm:gap-6 gap-2 flex flex-col justify-center">
<h3 class="text-lg sm:text-2xl text-yellow mb-6">
Partnerships & Sponsorships
</h3>
<div class="content flex flex-col gap-2 sm:text-lg text-sm">
<p class="pl-5">
If you represent an organization that would like to partner with the greenpill network, please get in
touch in the #introduce-yourself channel <a href="https://discord.gg/greenpill"
class=" text-green hover:text-[var(--mid-green)] transition-all" target="_blank"> via discord</a>.
</p>
<p class="pl-5">
</p>
</div>
<div class="py-6 gap-6 flex flex-col justify-center">
<h3 class="text-lg sm:text-xl text-yellow mb-2 pl-4">
Other Regen Conveners
</h3>
<p class="pl-5">