-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathextension.html
More file actions
668 lines (623 loc) · 22 KB
/
Copy pathextension.html
File metadata and controls
668 lines (623 loc) · 22 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>lil org</title>
<link rel="icon" href="/favicon.ico" sizes="any" />
<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" />
<meta name="theme-color" content="#ffffff" />
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
line-height: 1.3;
margin: 0;
padding: 0;
background-color: #ffffff;
color: #1c1c1e;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #131313;
color: #f0f0f0;
}
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 0.69rem;
padding-top: 2rem;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.app-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
margin-bottom: 1rem;
}
.app-card {
background-color: #f7f7f8;
border-radius: 10px;
padding: 1.5rem;
text-align: center;
transition: transform 0.3s;
text-decoration: none;
color: inherit;
display: block;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.app-card:hover {
transform: translateY(-1px);
}
.app-icon {
width: 130px;
height: 130px;
margin: 0 auto 0rem;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.app-name {
font-size: 2rem;
font-weight: bold;
margin-top: 0.23rem;
margin-bottom: 0.33rem;
color: #1c1c1e;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.app-description {
font-size: 1rem;
color: #3a3a3c;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.social-links {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 1rem;
margin-top: 1rem;
}
.social-link {
font-size: 2rem;
text-decoration: none;
color: #3a3a3c;
background-color: #f7f7f8;
border-radius: 10px;
padding: 1.5rem;
text-align: center;
transition: transform 0.3s;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100pt;
}
.social-link:hover {
transform: translateY(-1px);
}
.social-subtitle {
font-size: 0.7rem;
margin-top: 0.81rem;
line-height: 1;
color: #007aff;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
header,
footer {
text-align: center;
margin-bottom: 1rem;
font-size: 2rem;
font-weight: bold;
white-space: normal;
overflow: hidden;
width: calc(100% - 2rem);
background-color: #f7f7f8;
border-radius: 10px;
padding: 1rem;
display: flex;
justify-content: center;
align-items: center;
min-height: 5rem;
color: #1c1c1e;
}
.brand-logo {
cursor: default;
gap: 0.55rem;
line-height: 1;
white-space: nowrap;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.brand-logo__mark {
display: block;
width: 1.8rem;
height: 1.8rem;
flex: 0 0 1.8rem;
}
.brand-logo__name {
display: block;
}
@media (max-width: 480px) {
.brand-logo__mark {
width: 1.7rem;
height: 1.7rem;
flex-basis: 1.7rem;
}
}
footer {
margin-top: 1rem;
margin-bottom: 0;
font-size: 2rem;
font-weight: bold;
}
.qa-block {
background-color: #f7f7f8;
border-radius: 10px;
padding: 1.5rem;
padding-top: 0.34rem;
margin-bottom: 1rem;
text-align: center;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.qa-question {
font-weight: bold;
margin-bottom: 0.5rem;
font-size: 1.5rem;
color: #1c1c1e;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.qa-answer {
margin-bottom: 0;
font-size: 1rem;
color: #3a3a3c;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
@media (prefers-color-scheme: dark) {
.app-card,
.social-link,
header,
footer,
.qa-block {
background-color: rgba(255, 255, 255, 0.1);
color: #f0f0f0;
}
.app-name,
.qa-question {
color: #f0f0f0;
}
.app-description,
.qa-answer {
color: #bdc3c7;
}
.social-subtitle {
color: #007aff;
}
}
@media (max-width: 768px) {
.social-links {
grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
}
.social-link {
font-size: 1.5rem;
padding: 1rem;
height: 77pt;
}
.social-subtitle {
font-size: 0.6rem;
margin-top: 0.5rem;
}
}
@media (max-width: 480px) {
.social-links {
gap: 0.5rem;
margin-top: 0.5rem;
}
.social-link {
font-size: 1.2rem;
padding: 0.8rem;
height: 69pt;
}
.social-subtitle {
font-size: 0.5rem;
margin-top: 0.3rem;
}
.container {
padding: 0.5rem;
padding-top: 0.5rem;
}
.app-grid {
gap: 0.5rem;
margin-bottom: 0.5rem;
}
.app-card {
padding: 0.69rem;
padding-top: 1.5rem;
padding-bottom: 1.5rem;
}
header,
footer {
margin-bottom: 0.5rem;
}
footer {
margin-top: 0.5rem;
margin-bottom: 0;
font-size: 1.69rem;
}
.app-name {
font-size: 1.69rem;
}
.app-description {
font-size: 0.69rem;
}
}
@media (max-width: 355px) {
.app-icon {
width: 100px;
height: 100px;
}
footer {
font-size: 1.5rem;
}
.social-links {
grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
}
.app-grid {
gap: 0.33rem;
}
.container {
padding: 0.33rem;
}
.social-links {
gap: 0.23rem;
}
}
</style>
</head>
<body>
<div class="container">
<header class="brand-logo">
<img
class="brand-logo__mark"
src="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTUiIGN5PSIxNSIgcj0iMTUiIGZpbGw9IiM1REVGOEIiLz4KPHBhdGggZD0iTTE0Ljg3OTcgOS42MjYzOEMxNS4xNDU2IDkuMTg5NzggMTUuODE5NiA3Ljk2MzU5IDE2LjM3MDMgNi45MDQ2MUMxNi45MzA0IDUuODM2MzQgMTcuMzk1NiA0Ljk4MTcyIDE3LjQwNTEgNS4wMDAzQzE3LjQxNDYgNS4wMTg4OCAxNy41ODU0IDYuMTk4NjIgMTcuNzc1MyA3LjYyOTE3QzE3Ljk2NTIgOS4wNTk3MyAxOC4xOTMgMTAuNTI3NCAxOC4yNzg1IDEwLjg4MDRDMTguMzkyNCAxMS4zODIxIDE4LjUyNTMgMTEuNjQyMiAxOC44MTk2IDExLjk5NTJDMTkuMDM4IDEyLjI1NTMgMTkuMzc5NyAxMi41NzExIDE5LjU4ODYgMTIuNzEwNEMxOS43ODggMTIuODQwNSAyMC40MTQ2IDEzLjE3NDkgMjAuOTg0MiAxMy40NTM2QzIxLjU0NDMgMTMuNzIzIDIyIDEzLjk2NDUgMjIgMTMuOTkyNEMyMiAxNC4wMjAyIDIxLjQ5NjggMTQuMjgwMyAyMC44ODkyIDE0LjU2ODNDMjAuMDgyMyAxNC45NDkyIDE5LjUwMzIgMTUuMzAyMSAxOC44MTk2IDE1Ljg1MDJDMTguMjk3NSAxNi4yNTg5IDE3Ljc5NDMgMTYuNjk1NSAxNy43MDg5IDE2LjgwN0MxNy42MjM0IDE2LjkxODUgMTcuMTI5NyAxNy44NDc0IDE2LjYxNzEgMTguODY5MkMxNi4wOTQ5IDE5Ljg5MTEgMTUuMzE2NSAyMS40ODg4IDE0Ljg3MDMgMjIuNDE3OEMxNC40MzM1IDIzLjMzNzQgMTQuMDQ0MyAyNC4wNTI3IDE0LjAxNTggMjMuOTk3QzEzLjk4NzMgMjMuOTMxOSAxMy45MTE0IDIzLjQzMDMgMTMuODQ0OSAyMi44NjM3QzEzLjc3ODUgMjIuMjk3IDEzLjYyNjYgMjEuMTU0NCAxMy41MDMyIDIwLjMwOTFDMTMuMzc5NyAxOS40NjM4IDEzLjE3MDkgMTguNDMyNiAxMy4wMzggMTguMDA1M0MxMi44ODYxIDE3LjU1MDIgMTIuNjg2NyAxNy4xMzIxIDEyLjUyNTMgMTYuOTY0OUMxMi4zODI5IDE2LjgxNjMgMTEuOTI3MiAxNi40OTEyIDExLjUwOTUgMTYuMjQ5N0MxMS4wOTE4IDE2LjAwODEgOS45MDUwNiAxNS40NTA4IDguODcwMjUgMTUuMDE0MkM3Ljg0NDk0IDE0LjU3NzYgNyAxNC4yMDYgNyAxNC4xNzgxQzcgMTQuMTUwMyA3LjUyMjE1IDEzLjkwODggOC4xNjc3MiAxMy42MzAxQzguODAzOCAxMy4zNTE0IDEwLjEzMjkgMTIuODAzMyAxMS4xMjk3IDEyLjQxMzJMMTEuMTI5OCAxMi40MTMyQzEyLjExNzEgMTIuMDEzNyAxMy4xMDQ0IDExLjYxNDMgMTMuMzEzMyAxMS41MDI4QzEzLjUyMjIgMTEuNDAwNiAxMy44NTQ0IDExLjExMjcgMTQuMDQ0MyAxMC44NjE5QzE0LjIzNDIgMTAuNjIwMyAxNC42MTM5IDEwLjA2MyAxNC44Nzk3IDkuNjI2MzhaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K"
width="30"
height="30"
alt=""
aria-hidden="true"
/>
<span class="brand-logo__name">lil org</span>
</header>
<div class="qa-block">
<p class="qa-question">how to proceed?</p>
<p class="qa-answer">click the "open" button at the top of the page</p>
</div>
<div class="qa-block">
<p class="qa-question">what if there is no button?</p>
<p class="qa-answer">restart your device for a possible fix</p>
</div>
<main class="app-grid">
<a
href="https://apps.apple.com/app/id6478607925"
target="_blank"
class="app-card"
>
<svg
class="app-icon"
alt="big wallet icon"
width="1024"
height="1024"
viewBox="0 0 1024 1024"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g filter="url(#filter0_d_108_46)">
<rect
x="100"
y="100"
width="824"
height="824"
rx="184"
fill="white"
/>
</g>
<path
d="M765 512.5C765 372.496 651.504 259 511.5 259C371.496 259 258 372.496 258 512.5C258 652.504 371.496 766 511.5 766C651.504 766 765 652.504 765 512.5Z"
fill="url(#paint0_linear_108_46)"
/>
<defs>
<filter
id="filter0_d_108_46"
x="78"
y="89"
width="868"
height="868"
filterUnits="userSpaceOnUse"
color-interpolation-filters="sRGB"
>
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"
/>
<feOffset dy="11" />
<feGaussianBlur stdDeviation="11" />
<feColorMatrix
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.28 0"
/>
<feBlend
mode="normal"
in2="BackgroundImageFix"
result="effect1_dropShadow_108_46"
/>
<feBlend
mode="normal"
in="SourceGraphic"
in2="effect1_dropShadow_108_46"
result="shape"
/>
</filter>
<linearGradient
id="paint0_linear_108_46"
x1="511.5"
y1="259"
x2="511.5"
y2="766"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#62CCF9" />
<stop offset="1" stop-color="#007AFF" />
</linearGradient>
</defs>
</svg>
<h2 class="app-name">big wallet</h2>
<p class="app-description">crypto wallet for safari</p>
</a>
<a
href="https://apps.apple.com/app/id6472607192"
target="_blank"
class="app-card"
>
<svg
class="app-icon"
alt="nft player icon"
width="1024"
height="1024"
viewBox="0 0 1024 1024"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g filter="url(#filter0_d_108_48)">
<rect
x="100"
y="100"
width="824"
height="824"
rx="184"
fill="url(#paint0_linear_108_48)"
/>
</g>
<path
d="M525.271 343.295C534.287 328.168 557.15 285.683 575.827 248.991C594.826 211.978 610.605 182.367 610.927 183.01C611.249 183.654 617.045 224.53 623.485 274.096C629.925 323.662 637.654 374.516 640.552 386.746C644.416 404.127 648.924 413.139 658.907 425.369C666.313 434.381 677.905 445.324 684.99 450.152C691.752 454.658 713.005 466.245 732.326 475.901C751.324 485.235 766.781 493.603 766.781 494.569C766.781 495.534 749.714 504.546 729.105 514.524C701.734 527.72 682.091 539.951 658.907 558.94C641.196 573.102 624.129 588.229 621.231 592.092C618.333 595.954 601.588 628.14 584.199 663.544C566.489 698.948 540.084 754.308 524.949 786.494C510.136 818.358 496.934 843.141 495.968 841.209C495.002 838.956 492.426 821.576 490.172 801.943C487.917 782.31 482.765 742.721 478.579 713.432C474.393 684.143 467.309 648.417 462.8 633.611C457.648 617.84 450.886 603.357 445.412 597.563C440.582 592.413 425.125 581.148 410.956 572.78C396.788 564.412 356.536 545.1 321.437 529.973C286.659 514.846 258 501.971 258 501.006C258 500.04 275.711 491.672 297.608 482.016C319.183 472.36 364.264 453.371 398.076 439.853C431.565 426.013 465.055 412.173 472.139 408.311C479.223 404.77 490.494 394.793 496.934 386.103C503.374 377.734 516.255 358.423 525.271 343.295Z"
fill="white"
/>
<defs>
<filter
id="filter0_d_108_48"
x="78"
y="89"
width="868"
height="868"
filterUnits="userSpaceOnUse"
color-interpolation-filters="sRGB"
>
<feFlood flood-opacity="0" result="BackgroundImageFix" />
<feColorMatrix
in="SourceAlpha"
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
result="hardAlpha"
/>
<feOffset dy="11" />
<feGaussianBlur stdDeviation="11" />
<feColorMatrix
type="matrix"
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.28 0"
/>
<feBlend
mode="normal"
in2="BackgroundImageFix"
result="effect1_dropShadow_108_48"
/>
<feBlend
mode="normal"
in="SourceGraphic"
in2="effect1_dropShadow_108_48"
result="shape"
/>
</filter>
<linearGradient
id="paint0_linear_108_48"
x1="512"
y1="100"
x2="512"
y2="924"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="#FFFE0F" />
<stop offset="1" stop-color="#F5AA1D" />
</linearGradient>
</defs>
</svg>
<h2 class="app-name">nft player</h2>
<p class="app-description">view full collections</p>
</a>
</main>
<div class="social-links">
<a
href="https://github.com/lil-org"
target="_blank"
class="social-link"
aria-label="GitHub"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
fill="currentColor"
>
<path
d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"
/>
</svg>
<span class="social-subtitle">lil-org</span>
</a>
<a
href="https://github.com/lil-org/lil-dot-org/blob/main/docs.md"
target="_blank"
class="social-link"
aria-label="Docs"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 25 31"
fill="none"
>
<path
d="M5.37073 30.7933H19.9299C23.0143 30.7933 24.6563 29.1394 24.6563 26.0313V13.8068C24.6563 11.6838 24.3694 10.6695 23.0222 9.2985L16.3632 2.53248C15.0636 1.20905 13.9779 0.898438 12.0214 0.898438H5.37073C2.28636 0.898438 0.65625 2.5523 0.65625 5.66045V26.0313C0.65625 29.1513 2.28636 30.7933 5.37073 30.7933ZM5.70899 27.4731C4.53996 27.4731 3.97643 26.8636 3.97643 25.7524V5.93929C3.97643 4.82811 4.53996 4.21858 5.72088 4.21858H11.1752V11.1789C11.1752 13.4135 12.2601 14.4984 14.4947 14.4984H21.3242V25.7524C21.3242 26.8636 20.7606 27.4731 19.5916 27.4731H5.70899ZM14.7856 11.6734C14.2419 11.6734 13.9883 11.4198 13.9883 10.8762V4.57291L20.9699 11.6734H14.7856Z"
fill="currentColor"
/>
</svg>
<span class="social-subtitle">docs</span>
</a>
<a
href="mailto:yo@lil.org"
target="_blank"
class="social-link"
aria-label="Email"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2.3"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect x="2" y="4" width="20" height="16" rx="2" ry="2"></rect>
<path d="M22 7l-10 7L2 7"></path>
</svg>
<span class="social-subtitle">email</span>
</a>
<a
href="https://farcaster.xyz/org"
target="_blank"
class="social-link"
aria-label="Farcaster"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
fill="currentColor"
>
<path
d="M4.5 0.46875H18.75V20.7188H16.6875V11.4453C16.4531 8.88281 14.2969 6.875 11.625 6.875C8.95312 6.875 6.79688 8.88281 6.5625 11.4453V20.7188H4.5V0.46875Z"
/>
<path
d="M0.75 3.34375L1.59375 6.21875H2.3125V17.8594C1.96875 17.8594 1.66406 18.1562 1.66406 18.5156V19.3125H1.53125C1.17188 19.3125 0.882812 19.6094 0.882812 19.9688V20.7188H8.20312V19.9688C8.20312 19.6094 7.91406 19.3125 7.55469 19.3125H7.42188V18.5156C7.42188 18.1562 7.11719 17.8594 6.77344 17.8594H5.97656V3.34375H0.75Z"
/>
<path
d="M16.8281 17.8594C16.4844 17.8594 16.1797 18.1562 16.1797 18.5156V19.3125H16.0469C15.7031 19.3125 15.3984 19.6094 15.3984 19.9688V20.7188H22.7188V19.9688C22.7188 19.6094 22.4141 19.3125 22.0703 19.3125H21.9375V18.5156C21.9375 18.1562 21.6328 17.8594 21.2891 17.8594V6.21875H22L22.8438 3.34375H17.625V17.8594H16.8281Z"
/>
</svg>
<span class="social-subtitle">org</span>
</a>
<a
href="https://x.com/lildotorg"
target="_blank"
class="social-link"
aria-label="X (Twitter)"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
fill="currentColor"
>
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"
stroke="currentColor"
stroke-width="0.2"
/>
</svg>
<span class="social-subtitle">lildotorg</span>
</a>
</div>
<footer
id="dateTime"
style="
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
cursor: default;
"
></footer>
</div>
<script>
function setDateTime() {
const now = new Date();
const options = {
weekday: "long",
year: "numeric",
month: "long",
day: "numeric",
};
document.getElementById("dateTime").textContent = now
.toLocaleString(undefined, options)
.toLowerCase();
}
setDateTime();
</script>
</body>
</html>