-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
990 lines (979 loc) · 42.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Galactrix '23</title>
<meta property="og:title" content="Character NFT template" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<meta property="twitter:card" content="summary_large_image" />
<script src="./firebase.js" type="module"></script>
<style data-tag="reset-style-sheet">
html { line-height: 1.15;}body { margin: 0;}* { box-sizing: border-box; border-width: 0; border-style: solid;}p,li,ul,pre,div,h1,h2,h3,h4,h5,h6,figure,blockquote,figcaption { margin: 0; padding: 0;}button { background-color: transparent;}button,input,optgroup,select,textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0;}button,select { text-transform: none;}button,[type="button"],[type="reset"],[type="submit"] { -webkit-appearance: button;}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner { border-style: none; padding: 0;}button:-moz-focus,[type="button"]:-moz-focus,[type="reset"]:-moz-focus,[type="submit"]:-moz-focus { outline: 1px dotted ButtonText;}a { color: inherit; text-decoration: inherit;}input { padding: 2px 4px;}img { display: block;}html { scroll-behavior: smooth }
</style>
<style data-tag="default-style-sheet">
html {
font-family: Inter;
font-size: 16px;
}
body {
font-weight: 400;
font-style:normal;
text-decoration: none;
text-transform: none;
letter-spacing: normal;
line-height: 1.15;
color: var(--dl-color-gray-black);
background-color: var(--dl-color-gray-white);
}
</style>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
data-tag="font"
/>
<!--This is the head section-->
<!-- <style> ... </style> -->
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div>
<script
type="text/javascript"
src="https://unpkg.com/dangerous-html/dist/default/lib.umd.js"
></script>
<link href="./index.css" rel="stylesheet" />
<div class="home-container">
<header data-thq="thq-navbar" class="home-navbar">
<span class="home-logo">GALACTRIX '23</span>
<div
data-thq="thq-navbar-nav"
data-role="Nav"
class="home-desktop-menu"
>
<nav
data-thq="thq-navbar-nav-links"
data-role="Nav"
class="home-nav"
>
<button class="home-button button-clean button">About</button>
<button class="home-button1 button-clean button">Leaderboard</button>
<button class="home-button2 button-clean button">Rules</button>
<button class="home-button3 button-clean button">ATMOS</button>
<button class="home-button4 button-clean button">Ad Astra</button>
</nav>
</div>
<div data-thq="thq-navbar-btn-group" class="home-btn-group">
<div class="home-socials">
<button class="social button">
<img
alt="image"
src="public/Icons/twitter.svg"
class="home-image"
/>
</button>
<button class="social button">
<a
href="https://www.instagram.com/bphc.ad.astra/"
target="_blank"
rel="noreferrer noopener"
>
<img
src="public/icons8-instagram-logo.svg"
alt="image"
class="home-image01"
/>
</a>
</button>
</div>
<button class="button">Register Now!</button>
</div>
<div data-thq="thq-burger-menu" class="home-burger-menu">
<button class="button home-button5">
<svg viewBox="0 0 1024 1024" class="home-icon">
<path
d="M128 554.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM128 298.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667zM128 810.667h768c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-768c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
></path>
</svg>
</button>
</div>
<div data-thq="thq-mobile-menu" class="home-mobile-menu">
<div
data-thq="thq-mobile-menu-nav"
data-role="Nav"
class="home-nav1"
>
<div class="home-container1">
<span class="home-logo1">Character</span>
<div data-thq="thq-close-menu" class="home-menu-close">
<svg viewBox="0 0 1024 1024" class="home-icon02">
<path
d="M810 274l-238 238 238 238-60 60-238-238-238 238-60-60 238-238-238-238 60-60 238 238 238-238z"
></path>
</svg>
</div>
</div>
<nav
data-thq="thq-mobile-menu-nav-links"
data-role="Nav"
class="home-nav2"
>
<span class="home-text">About</span>
<span class="home-text01">Features</span>
<span class="home-text02">Pricing</span>
<span class="home-text03">Team</span>
<span class="home-text04">Blog</span>
</nav>
<div class="home-container2">
<button class="home-login button">Login</button>
<button class="button">Register</button>
</div>
</div>
<div class="home-icon-group">
<svg viewBox="0 0 950.8571428571428 1024" class="home-icon04">
<path
d="M925.714 233.143c-25.143 36.571-56.571 69.143-92.571 95.429 0.571 8 0.571 16 0.571 24 0 244-185.714 525.143-525.143 525.143-104.571 0-201.714-30.286-283.429-82.857 14.857 1.714 29.143 2.286 44.571 2.286 86.286 0 165.714-29.143 229.143-78.857-81.143-1.714-149.143-54.857-172.571-128 11.429 1.714 22.857 2.857 34.857 2.857 16.571 0 33.143-2.286 48.571-6.286-84.571-17.143-148-91.429-148-181.143v-2.286c24.571 13.714 53.143 22.286 83.429 23.429-49.714-33.143-82.286-89.714-82.286-153.714 0-34.286 9.143-65.714 25.143-93.143 90.857 112 227.429 185.143 380.571 193.143-2.857-13.714-4.571-28-4.571-42.286 0-101.714 82.286-184.571 184.571-184.571 53.143 0 101.143 22.286 134.857 58.286 41.714-8 81.714-23.429 117.143-44.571-13.714 42.857-42.857 78.857-81.143 101.714 37.143-4 73.143-14.286 106.286-28.571z"
></path></svg
><svg viewBox="0 0 877.7142857142857 1024" class="home-icon06">
<path
d="M585.143 512c0-80.571-65.714-146.286-146.286-146.286s-146.286 65.714-146.286 146.286 65.714 146.286 146.286 146.286 146.286-65.714 146.286-146.286zM664 512c0 124.571-100.571 225.143-225.143 225.143s-225.143-100.571-225.143-225.143 100.571-225.143 225.143-225.143 225.143 100.571 225.143 225.143zM725.714 277.714c0 29.143-23.429 52.571-52.571 52.571s-52.571-23.429-52.571-52.571 23.429-52.571 52.571-52.571 52.571 23.429 52.571 52.571zM438.857 152c-64 0-201.143-5.143-258.857 17.714-20 8-34.857 17.714-50.286 33.143s-25.143 30.286-33.143 50.286c-22.857 57.714-17.714 194.857-17.714 258.857s-5.143 201.143 17.714 258.857c8 20 17.714 34.857 33.143 50.286s30.286 25.143 50.286 33.143c57.714 22.857 194.857 17.714 258.857 17.714s201.143 5.143 258.857-17.714c20-8 34.857-17.714 50.286-33.143s25.143-30.286 33.143-50.286c22.857-57.714 17.714-194.857 17.714-258.857s5.143-201.143-17.714-258.857c-8-20-17.714-34.857-33.143-50.286s-30.286-25.143-50.286-33.143c-57.714-22.857-194.857-17.714-258.857-17.714zM877.714 512c0 60.571 0.571 120.571-2.857 181.143-3.429 70.286-19.429 132.571-70.857 184s-113.714 67.429-184 70.857c-60.571 3.429-120.571 2.857-181.143 2.857s-120.571 0.571-181.143-2.857c-70.286-3.429-132.571-19.429-184-70.857s-67.429-113.714-70.857-184c-3.429-60.571-2.857-120.571-2.857-181.143s-0.571-120.571 2.857-181.143c3.429-70.286 19.429-132.571 70.857-184s113.714-67.429 184-70.857c60.571-3.429 120.571-2.857 181.143-2.857s120.571-0.571 181.143 2.857c70.286 3.429 132.571 19.429 184 70.857s67.429 113.714 70.857 184c3.429 60.571 2.857 120.571 2.857 181.143z"
></path></svg
><svg viewBox="0 0 602.2582857142856 1024" class="home-icon08">
<path
d="M548 6.857v150.857h-89.714c-70.286 0-83.429 33.714-83.429 82.286v108h167.429l-22.286 169.143h-145.143v433.714h-174.857v-433.714h-145.714v-169.143h145.714v-124.571c0-144.571 88.571-223.429 217.714-223.429 61.714 0 114.857 4.571 130.286 6.857z"
></path>
</svg>
</div>
</div>
</header>
<section class="home-hero">
<div class="home-heading">
<h1 class="home-header">The Biggest Treasure Hunt is finally here!</h1>
<p class="home-caption">
A character custom collection is joining the NFT space on Opensea.
</p>
</div>
<div class="home-buttons">
<button class="button">Register Now!</button>
<button class="home-learn button-clean button">Learn more</button>
</div>
</section>
<section class="home-description">
<img
alt="image"
src="public/hero-divider-1500w.png"
class="home-divider-image"
/>
<div class="home-container3">
<div class="home-description01">
<div class="home-content">
<p class="home-paragraph">
We are a team of digital aute irure dolor in reprehenderit in
voluptate velit esse cillum dolore eu fugiat.
</p>
<p class="home-paragraph1">
Excepteur sint occaecat cupidatat non proident, sunt in culpa
qui officia deserunt mollit anim id est laborum. Nemo enim
ipsam voluptatem quia voluptas sit aspernatur aut odit aut
fugit.
</p>
</div>
<div class="home-links">
<a
href="https://twitter.com"
target="_blank"
rel="noreferrer noopener"
class="button-link button"
>
<span>Follow us on Twitter</span>
<img
alt="image"
src="public/Icons/arrow.svg"
class="home-arrow"
/>
</a>
<a
href="https://discord.com"
target="_blank"
rel="noreferrer noopener"
class="home-link02 button-link button"
>
<span>Join us on Discord</span>
<img
alt="image"
src="public/Icons/arrow.svg"
class="home-arrow1"
/>
</a>
</div>
</div>
</div>
</section>
<section class="home-cards">
<div class="home-row">
<div class="home-card">
<div class="home-avatar">
<img
alt="image"
src="public/Avatars/avatar.svg"
class="home-avatar1"
/>
</div>
<div class="home-main">
<div class="home-content01">
<h2 class="home-header01">10,000+ unique characters</h2>
<p class="home-description02">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod tempor incididunt ut labore et dolore magna
aliquat enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi
</p>
</div>
<button class="home-learn1 button">
<span class="home-text07">Learn more</span>
<img
alt="image"
src="public/Icons/arrow.svg"
class="home-image02"
/>
</button>
</div>
</div>
<div class="home-card01">
<div class="home-avatar2">
<img
alt="image"
src="public/Avatars/default-avatar.svg"
class="home-avatar3"
/>
</div>
<div class="home-main1">
<div class="home-content02">
<h2 class="home-header02">
Create yourself for the metaverse
</h2>
<p class="home-description03">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod tempor incididunt ut labore et dolore magna
aliquat enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi
</p>
</div>
<button class="home-learn2 button">
<span class="home-text08">Learn more</span>
<img
alt="image"
src="public/Icons/arrow-2.svg"
class="home-image03"
/>
</button>
</div>
</div>
</div>
<div class="home-card02">
<div class="home-avatar4">
<img
alt="image"
src="public/Avatars/light-avatar.svg"
class="home-avatar5"
/>
</div>
<div class="home-row1">
<div class="home-main2">
<div class="home-content03">
<h2 class="home-header03">
Create yourself for the metaverse
</h2>
<p class="home-description04">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod tempor incididunt ut labore et dolore magna
aliquat enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi
</p>
</div>
<button class="home-learn3 button">
<span class="home-text09">Learn more</span>
<img
alt="image"
src="public/Icons/arrow-2.svg"
class="home-image04"
/>
</button>
</div>
<img alt="image" src="/group%202262.svg" class="home-image05" />
</div>
</div>
</section>
<section class="home-collection">
<div class="home-content04">
<span class="home-caption01">collection</span>
<div class="home-heading01">
<h2 class="home-header04">All time best collections</h2>
<p class="home-header05">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore.
</p>
</div>
</div>
<div class="home-main3">
<div class="home-card03">
<div class="home-image06">
<img
alt="image"
src="public/Characters/character-1.svg"
class="home-image07"
/>
</div>
<div class="home-content05">
<span class="home-caption02">Character #1</span>
<h3 class="home-title">0.05 ETH</h3>
</div>
</div>
<div class="home-card04">
<div class="home-image08">
<img
alt="image"
src="public/Characters/character-2.svg"
class="home-image09"
/>
</div>
<div class="home-content06">
<span class="home-caption03">Character #2</span>
<h3 class="home-title1">0.05 ETH</h3>
</div>
</div>
<div class="home-card05">
<div class="home-image10">
<img
alt="image"
src="public/Characters/character-3.svg"
class="home-image11"
/>
</div>
<div class="home-content07">
<span class="home-caption04">Character #3</span>
<h3 class="home-title2">0.05 ETH</h3>
</div>
</div>
<div class="home-card06">
<div class="home-image12">
<img
alt="image"
src="public/Characters/character-4.svg"
class="home-image13"
/>
</div>
<div class="home-content08">
<span class="home-caption05">
<span>Character #4</span>
<br />
</span>
<h3 class="home-title3">0.05 ETH</h3>
</div>
</div>
<div class="home-card07">
<div class="home-image14">
<img
alt="image"
src="public/Characters/character-5.svg"
class="home-image15"
/>
</div>
<div class="home-content09">
<span class="home-caption06">Character #5</span>
<h3 class="home-title4">0.05 ETH</h3>
</div>
</div>
<div class="home-card08">
<div class="home-image16">
<img
alt="image"
src="public/Characters/character-6.svg"
class="home-image17"
/>
</div>
<div class="home-content10">
<span class="home-caption07">Character #6</span>
<h3 class="home-title5">0.05 ETH</h3>
</div>
</div>
<div class="home-card09">
<div class="home-image18">
<img
alt="image"
src="public/Characters/character-7.svg"
class="home-image19"
/>
</div>
<div class="home-content11">
<span class="home-caption08">Character #7</span>
<h3 class="home-title6">0.05 ETH</h3>
</div>
</div>
<div class="home-card10">
<div class="home-image20">
<img
alt="image"
src="public/Characters/character-8.svg"
class="home-image21"
/>
</div>
<div class="home-content12">
<span class="home-caption09">Character #8</span>
<h3 class="home-title7">0.05 ETH</h3>
</div>
</div>
</div>
<button class="home-view2 button-link button">View all</button>
</section>
<section class="home-project">
<div class="home-understand">
<div class="home-content13">
<span class="home-caption10">Project</span>
<div class="home-heading02">
<h2 class="home-header06">Understand the project</h2>
<p class="home-header07">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat.
</p>
</div>
<button class="home-view3 button-link button">
<span>Learn More</span>
<img
alt="image"
src="public/Icons/arrow.svg"
class="home-image22"
/>
</button>
</div>
<img
alt="image"
src="public/group%202415.svg"
class="home-image23"
/>
</div>
<div class="home-mining">
<img
alt="image"
src="public/group%202422.svg"
class="home-image24"
/>
<div class="home-content14">
<span class="home-caption11">Project</span>
<div class="home-heading03">
<h2 class="home-header08">How the minting works</h2>
<p class="home-header09">
<span>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod tempor incididunt ut labore et dolore magna
aliqua. Ut enim ad minim veniam, quis nostrud exercitation
ullamco laboris nisi ut aliquip ex ea commodo consequat.
</span>
<br />
<br />
<span>
Duis aute irure dolor in reprehenderit in voluptate velit
esse cillum dolore eu fugiat nulla pariatur.
</span>
<br />
</p>
</div>
<button class="home-view4 button-link button">
<span>Learn More</span>
<img
alt="image"
src="public/Icons/arrow.svg"
class="home-image25"
/>
</button>
</div>
</div>
</section>
<section class="home-roadmap">
<div class="home-heading04">
<h2 class="home-header10">Roadmap</h2>
<p class="home-header11">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore
</p>
</div>
<div class="home-list">
<div class="home-step">
<span class="home-caption12">01</span>
<div class="home-heading05">
<h2 class="home-header12">Project Launch</h2>
<p class="home-header13">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat.
</p>
</div>
<button class="home-button6 button">View on Opensea</button>
</div>
<div class="home-step1">
<span class="home-caption13">02</span>
<div class="home-heading06">
<h2 class="home-header14">Metadata and Character</h2>
<p class="home-header15">
<span>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod tempor incididunt ut labore et dolore magna
aliqua.
</span>
<br />
<br />
<span>
Ut enim ad minim veniam, quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat.
</span>
<br />
</p>
</div>
</div>
<div class="home-step2">
<span class="home-caption14">03</span>
<div class="home-heading07">
<h2 class="home-header16">Get Physical</h2>
<p class="home-header17">
<span>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod tempor incididunt ut labore et dolore magna
aliqua.
</span>
<br />
<br />
<span>
Ut enim ad minim veniam, quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat.
</span>
<br />
</p>
</div>
</div>
<div class="home-step3">
<span class="home-caption15">04</span>
<div class="home-heading08">
<h2 class="home-header18">Private club community</h2>
<p class="home-header19">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</p>
<div class="home-benefits">
<div class="home-item">
<img
alt="image"
src="public/Icons/people.svg"
class="home-image26"
/>
<p class="home-header20">Consectetur adipiscing elit</p>
</div>
<div class="home-item1">
<img
alt="image"
src="public/Icons/paper.svg"
class="home-image27"
/>
<p class="home-header21">Consectetur adipiscing elit</p>
</div>
<div class="home-item2">
<img
alt="image"
src="public/Icons/checklist.svg"
class="home-image28"
/>
<p class="home-header22">Consectetur adipiscing elit</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="home-join-us">
<div class="home-content15">
<div class="home-main4">
<div class="home-heading09">
<h2 class="home-header23">Create your character now</h2>
<p class="home-caption16">
A character custom collection is joining the NFT space on
Opensea.
</p>
</div>
<button class="home-view5 button">View on Opensea</button>
</div>
<img
alt="image"
src="public/group%202273.svg"
class="home-image29"
/>
</div>
</section>
<section class="home-faq">
<h2 class="home-header24">We have all the answers</h2>
<div class="home-accordion">
<div data-role="accordion-container" class="home-element accordion">
<div class="home-content16">
<span class="home-header25">
Lorem ipsum dolor sit ametetur elit?
</span>
<span data-role="accordion-content" class="home-description05">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem
accusantium doloremque laudantium, totam rem aperiam, eaque
ipsa quae ab illo inventore veritatis et quasi architecto
beatae vitae dicta sunt explicabo.
</span>
</div>
<div class="home-icon-container">
<svg
viewBox="0 0 1024 1024"
data-role="accordion-icon-closed"
class="home-icon10"
>
<path
d="M213.333 554.667h256v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
></path></svg
><svg
viewBox="0 0 1024 1024"
data-role="accordion-icon-open"
class="home-icon12"
>
<path
d="M213.333 554.667h597.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
></path>
</svg>
</div>
</div>
<div
data-role="accordion-container"
class="home-element1 accordion"
>
<div class="home-content17">
<span class="home-header26">
Excepteur sint occaecat cupidatat non sunt in culpa qui
officia deserunt mollit anim id est laborum?
</span>
<span data-role="accordion-content" class="home-description06">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem
accusantium doloremque laudantium, totam rem aperiam, eaque
ipsa quae ab illo inventore veritatis et quasi architecto
beatae vitae dicta sunt explicabo.
</span>
</div>
<div class="home-icon-container1">
<svg
viewBox="0 0 1024 1024"
data-role="accordion-icon-closed"
class="home-icon14"
>
<path
d="M213.333 554.667h256v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
></path></svg
><svg
viewBox="0 0 1024 1024"
data-role="accordion-icon-open"
class="home-icon16"
>
<path
d="M213.333 554.667h597.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
></path>
</svg>
</div>
</div>
<div
data-role="accordion-container"
class="home-element2 accordion"
>
<div class="home-content18">
<span class="home-header27">
Tempor incididunt ut labore et dolore magna aliquat enim ad
minim?
</span>
<span data-role="accordion-content" class="home-description07">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem
accusantium doloremque laudantium, totam rem aperiam, eaque
ipsa quae ab illo inventore veritatis et quasi architecto
beatae vitae dicta sunt explicabo.
</span>
</div>
<div class="home-icon-container2">
<svg
viewBox="0 0 1024 1024"
data-role="accordion-icon-closed"
class="home-icon18"
>
<path
d="M213.333 554.667h256v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
></path></svg
><svg
viewBox="0 0 1024 1024"
data-role="accordion-icon-open"
class="home-icon20"
>
<path
d="M213.333 554.667h597.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
></path>
</svg>
</div>
</div>
<div
data-role="accordion-container"
class="home-element3 accordion"
>
<div class="home-content19">
<span class="home-header28">
Lorem ipsum dolor sit ametetur elit?
</span>
<span data-role="accordion-content" class="home-description08">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem
accusantium doloremque laudantium, totam rem aperiam, eaque
ipsa quae ab illo inventore veritatis et quasi architecto
beatae vitae dicta sunt explicabo.
</span>
</div>
<div class="home-icon-container3">
<svg
viewBox="0 0 1024 1024"
data-role="accordion-icon-closed"
class="home-icon22"
>
<path
d="M213.333 554.667h256v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
></path></svg
><svg
viewBox="0 0 1024 1024"
data-role="accordion-icon-open"
class="home-icon24"
>
<path
d="M213.333 554.667h597.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
></path>
</svg>
</div>
</div>
<div
data-role="accordion-container"
class="home-element4 accordion"
>
<div class="home-content20">
<span class="home-header29">
Incididunt ut labore et dolore?
</span>
<span data-role="accordion-content" class="home-description09">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem
accusantium doloremque laudantium, totam rem aperiam, eaque
ipsa quae ab illo inventore veritatis et quasi architecto
beatae vitae dicta sunt explicabo.
</span>
</div>
<div class="home-icon-container4">
<svg
viewBox="0 0 1024 1024"
data-role="accordion-icon-closed"
class="home-icon26"
>
<path
d="M213.333 554.667h256v256c0 23.552 19.115 42.667 42.667 42.667s42.667-19.115 42.667-42.667v-256h256c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-256v-256c0-23.552-19.115-42.667-42.667-42.667s-42.667 19.115-42.667 42.667v256h-256c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
></path></svg
><svg
viewBox="0 0 1024 1024"
data-role="accordion-icon-open"
class="home-icon28"
>
<path
d="M213.333 554.667h597.333c23.552 0 42.667-19.115 42.667-42.667s-19.115-42.667-42.667-42.667h-597.333c-23.552 0-42.667 19.115-42.667 42.667s19.115 42.667 42.667 42.667z"
></path>
</svg>
</div>
</div>
</div>
</section>
<section class="home-get-yours">
<div class="home-row2">
<div class="home-column">
<div class="home-card11">
<img
alt="image"
src="public/Characters/character-9.svg"
class="home-image30"
/>
</div>
</div>
<div class="home-column1">
<div class="home-card12">
<img
alt="image"
src="public/Characters/character-10.svg"
class="home-image31"
/>
</div>
</div>
</div>
<div class="home-column2">
<div class="home-card13">
<div class="home-content21">
<h2 class="home-header30">Get yours now</h2>
<p class="home-description10">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod tempor incididunt ut labore et dolore magna aliquat
enim ad minim veniam.
</p>
</div>
<button class="home-button7 button">View on Opensea</button>
</div>
</div>
</section>
<footer class="home-footer">
<div class="home-main5">
<div class="home-branding">
<div class="home-heading10">
<h2 class="home-logo2">Galactrix 2023</h2>
<p class="home-caption17">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed
do eiusmod tempor incididunt ut labore et dolore.
</p>
</div>
<div class="home-socials1">
<a
href="https://twitter.com"
target="_blank"
rel="noreferrer noopener"
class="home-twitter1 social button"
>
<img
alt="image"
src="public/Icons/twitter.svg"
class="home-image32"
/>
</a>
<a
href="https://discord.com"
target="_blank"
rel="noreferrer noopener"
class="home-discord1 social button"
>
<img
alt="image"
src="public/Icons/discord.svg"
class="home-image33"
/>
</a>
</div>
</div>
<div class="home-links1">
<div class="home-list1">
<h3 class="home-heading11">Site</h3>
<div class="home-items">
<button class="home-link03 button-clean button">About</button>
<button class="home-link04 button-clean button">
Collection
</button>
<button class="home-link05 button-clean button">
Roadmap
</button>
<button class="home-link06 button-clean button">
Features
</button>
</div>
</div>
<div class="home-list2">
<h3 class="home-heading12">Company</h3>
<div class="home-items1">
<button class="home-link07 button-clean button">Team</button>
<button class="home-link08 button-clean button">Press</button>
<button class="home-link09 button-clean button">Terms</button>
<button class="home-link10 button-clean button">
Limitations
</button>
<button class="home-link11 button-clean button">
Licenses
</button>
</div>
</div>
</div>
<div class="home-socials2">
<a
href="https://twitter.com"
target="_blank"
rel="noreferrer noopener"
class="home-twitter2 social button"
>
<img
alt="image"
src="public/Icons/twitter.svg"
class="home-image34"
/>
</a>
<a
href="https://discord.com"
target="_blank"
rel="noreferrer noopener"
class="home-discord2 social button"
>
<img
alt="image"
src="public/Icons/discord.svg"
class="home-image35"
/>
</a>
</div>
</div>
<span class="home-copyright">
© 2022 Ad Astra. All Rights Reserved.
</span>
</footer>
<div>
<dangerous-html
html="<script>
/*
Accordion - Code Embed
*/
const accordionContainers = document.querySelectorAll('[data-role='accordion-container']'); // All accordion containers
const accordionContents = document.querySelectorAll('[data-role='accordion-content']'); // All accordion content
const accordionIconsClosed = document.querySelectorAll('[data-role='accordion-icon-closed']'); // All accordion closed icons
const accordionIconsOpen = document.querySelectorAll('[data-role='accordion-icon-open']'); // All accordion open icons
accordionContents.forEach((accordionContent) => {
accordionContent.style.display = 'none'; //Hides all accordion contents
});
accordionIconsClosed.forEach((icon) => {
icon.style.display = 'flex'
})
accordionIconsOpen.forEach((icon) => {
icon.style.display = 'none'
})
accordionContainers.forEach((accordionContainer, index) => {
accordionContainer.addEventListener('click', () => {
if (accordionContents[index].style.display === 'flex') {
// If the accordion is already open, close it
accordionContents[index].style.display = 'none';
accordionIconsClosed[index].style.display = 'flex';
accordionIconsOpen[index].style.display = 'none'
} else {
// If the accordion is closed, open it
accordionContents.forEach((accordionContent) => {
accordionContent.style.display = 'none'; //Hides all accordion contents
});
accordionIconsClosed.forEach((accordionIcon) => {
accordionIcon.style.display = 'flex'; // Resets all icon transforms to 0deg (default)
});
accordionIconsOpen.forEach((accordionIcon) => {
accordionIcon.style.display = 'none';
})
accordionContents[index].style.display = 'flex'; // Shows accordion content
accordionIconsClosed[index].style.display = 'none'; // Rotates accordion icon 180deg
accordionIconsOpen[index].style.display = 'flex';
}
});
});
</script>
"
></dangerous-html>
</div>
</div>
</div>
<script
data-section-id="navbar"
src="https://unpkg.com/@teleporthq/teleport-custom-scripts"
></script>
</body>
</html>