-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1107 lines (975 loc) · 36.4 KB
/
index.html
File metadata and controls
1107 lines (975 loc) · 36.4 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
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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Syn</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #1B2241 0%, #00031c 100%);
color: #CFE1FF;
line-height: 1.6;
overflow-x: hidden;
}
/* --- FIX START: Preloader and Loading Animation Styles --- */
#preloader {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: #00000;
backdrop-filter: blur(12px);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
#preloader-icon {
width: 80px;
height: 80px;
animation: spin 2s linear infinite;
transition: transform 1s cubic-bezier(0.6, -0.28, 0.735, 0.045), opacity 0.5s ease-out;
opacity: 1;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/* State when loading is finished */
body.loading-finished #preloader {
background-color: transparent;
}
body.loading-finished #preloader-icon {
opacity: 0;
/* The transform is set by JavaScript */
}
/* Hide preloader completely after animation */
body.loading-complete #preloader {
display: none;
}
/* Initially hide main content and footer */
main,
footer {
opacity: 0;
transition: opacity 0.8s ease-in 0.5s;
/* Delay the fade-in slightly */
}
/* Fade in main content and footer when loading is done */
body.loading-finished main,
body.loading-finished footer {
opacity: 1;
}
/* --- FIX END --- */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Hero Section */
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%,
100% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(-20px) rotate(1deg);
}
}
.hero-content {
position: relative;
z-index: 2;
}
.hero h1 {
font-size: 8rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, #fff, #CFE1FF);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: slideInUp 1s ease-out;
text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}
.hero p {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.8;
animation: slideInUp 1s ease-out 0.2s both;
}
.cta-button {
display: inline-block;
padding: 12px 30px;
background: transparent;
border: 2px solid #fff;
color: #fff;
text-decoration: none;
border-radius: 30px;
transition: all 0.3s ease;
animation: slideInUp 1s ease-out 0.4s both;
}
.cta-button:hover {
background: #fff;
color: #000;
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(255, 255, 255, 0.7);
}
@keyframes slideInUp {
from {
opacity: 0;
transform: translateY(50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Sections */
section {
padding: 100px 0;
}
/* Top padding for first section to compensate for removed header */
#skills {
padding-top: 120px;
}
.section-title {
text-align: center;
font-size: 4rem;
margin-bottom: 3rem;
background: linear-gradient(45deg, #ffffff, #CFE1FF);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
margin-top: 3rem;
}
/* --- FIX START: Consolidated Interactive Card Styles --- */
.interactive-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
backdrop-filter: blur(10px);
transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.interactive-card:hover {
transform: translateY(-10px);
/* Default pop-up effect */
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 1);
box-shadow: 0 0 25px rgba(255, 255, 255, 0.8), 0 0 8px rgba(255, 255, 255, 0.3);
transition: all 0.5s ease-in-out;
}
/* Specific override for the smaller tech items */
.tech-item.interactive-card:hover {
transform: translateY(-8px);
}
/* --- FIX END --- */
/* Skills Section */
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.skill-card {
padding: 2rem;
transition: all 3s ease-in-out;
}
.skill-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #fff;
}
.skill-card p {
opacity: 0.8;
margin-bottom: 1.5rem;
}
.tech-list {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.tech-tag {
background: rgba(255, 255, 255, 0.1);
padding: 0.3rem 0.8rem;
border-radius: 15px;
font-size: 0.8rem;
border: 1px solid rgba(255, 255, 255, 0.1);
}
/* Projects Section */
.projects-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.project-card {
overflow: hidden;
}
.project-image {
height: 200px;
background: linear-gradient(135deg, #333, #555);
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
color: rgba(255, 255, 255, 0.3);
}
.project-content {
padding: 1.5rem;
}
.project-content h3 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
}
.project-content p {
opacity: 0.8;
margin-bottom: 1rem;
}
.project-links {
display: flex;
gap: 1rem;
}
.project-link {
color: #fff;
text-decoration: none;
padding: 0.5rem 1rem;
border: 1px solid rgba(255, 255, 255, 0.4);
border-radius: 30px;
transition: all 0.3s ease-in-out;
}
.project-link:hover {
background-color: #fff;
color: #000;
transform: translateY(-3);
transition: all 0.3s ease-in-out;
}
/* About Section */
.about-content {
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.about-content p {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.9;
}
/* Contact Section */
.contact-content {
max-width: 600px;
margin: 2rem auto 0;
text-align: center;
}
.contact-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 2rem;
margin-top: 2rem;
margin-bottom: 7rem;
}
.contact-link {
color: #fff;
text-decoration: none;
padding: 1rem 2rem;
border: 2px solid rgba(255, 255, 255, 1);
border-radius: 30px;
transition: all 0.3s ease;
}
.contact-link:hover {
background-color: #fff;
color: #000;
transform: translateY(-3px);
transition: all 0.3s ease-in-out;
}
/* A general-purpose subtitle style for new sections */
.section-subtitle {
text-align: center;
max-width: 700px;
margin: -2rem auto 3rem;
opacity: 0.8;
font-size: 1.1rem;
}
/* Technologies Section */
.tech-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(35px, 1fr));
grid-template-rows: repeat(auto-fit, minmax(7px, 1fr));
gap: 1.5rem;
}
.tech-item {
padding: 1.5rem 0.5rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 1rem;
text-align: center;
}
.tech-icon {
height: 40px;
display: flex;
align-items: center;
justify-content: center;
}
.tech-icon img {
width: 40px;
height: 40px;
object-fit: contain;
}
.tech-item span {
font-weight: 500;
opacity: 0.9;
font-size: 1rem;
}
/* Content Creation Section */
.content-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.channel-card {
padding: 2rem;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
.channel-icon {
margin-bottom: 1.5rem;
}
.channel-icon svg {
width: 48px;
height: 48px;
}
.channel-card h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: #fff;
}
.channel-card p {
opacity: 0.8;
margin-bottom: 2rem;
flex-grow: 1;
}
.channel-link {
display: inline-block;
padding: 10px 25px;
background: transparent;
border: 2px solid rgba(255, 255, 255, 1);
color: #fff;
text-decoration: none;
border-radius: 30px;
transition: all 0.3s ease;
font-weight: bold;
}
.channel-link:hover {
background-color: #fff;
color: #000;
border-color: #fff;
transform: translateY(-3px);
transition: all 0.3s ease-in-out;
}
/* Support Section */
.support-content {
max-width: 600px;
margin: 0 auto;
text-align: center;
}
.support-content p {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.9;
}
.support-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-top: 2rem;
flex-wrap: wrap;
}
.support-link {
color: #fff;
text-decoration: none;
padding: 1rem 2.5rem;
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 30px;
transition: all 0.3s ease;
font-size: 1.1rem;
font-weight: bold;
}
.support-link.kofi {
border-color: #fff;
color: #fff;
}
.support-link.patreon {
border-color: #fff;
}
.support-link:hover {
transform: translateY(-5px);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease-in-out;
}
.support-link.kofi:hover {
background-color: #fff;
color: #000;
}
.support-link.patreon:hover {
background-color: #fff;
color: #000;
}
/* Organizations Section */
.org-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.org-card {
padding: 2rem;
}
.org-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #fff;
}
.org-card p {
opacity: 0.8;
margin-bottom: 1.5rem;
}
/* Background Overlay for Scroll Effect */
#background-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background-color: rgba(0, 0, 0, 0);
backdrop-filter: blur(0px);
transition: background-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
pointer-events: none;
}
/* Footer */
footer {
text-align: center;
padding: 2rem 0;
border-top: 1px solid rgba(255, 255, 255, 0.1);
opacity: 0.6;
}
/* --- Optimized Floating Dock Styles --- */
.floating-dock {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 1001;
opacity: 0;
visibility: hidden;
transition: opacity 0.4s ease, visibility 0.4s ease;
}
.floating-dock.visible {
opacity: 1;
visibility: visible;
}
.dock-wrapper {
position: relative;
background: rgba(10, 15, 40, 0.25);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 50px;
padding: 8px 12px;
box-shadow: 0 12px 32px rgba(0, 0, 0, 1);
}
.dock-highlighter {
position: absolute;
top: 8px;
height: calc(100% - 16px);
background-color: #fff;
border-radius: 30px;
box-shadow: 0 5px 12px rgba(0, 0, 0, 1);
transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
backdrop-filter: blur(12px);
}
.dock-links {
position: relative;
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 5px;
z-index: 1;
}
.dock-links a {
display: block;
color: #ccc;
text-decoration: none;
padding: 10px 20px;
border-radius: 30px;
font-size: 0.9rem;
font-weight: 500;
white-space: nowrap;
transition: color 0.4s ease;
}
.dock-links a.active {
color: #000;
}
/* Responsive */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.skills-grid,
.projects-grid,
.tech-grid,
.content-grid,
.org-grid {
grid-template-columns: 1fr;
}
.contact-links {
flex-direction: column;
align-items: center;
}
}
/* Animations */
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
opacity: 1;
transform: translateY(5);
}
</style>
</head>
<body>
<!-- Preloader Animation -->
<div id="preloader">
<img id="preloader-icon" src="assets/anim.png" alt="Loading...">
</div>
<div id="background-overlay"></div>
<main>
<section id="home" class="hero">
<div class="hero-content">
<h1>Solanki Mayur</h1>
<p>MC modder • Android dev • Web dev • GFX artist • Content Creator</p>
<a href="#projects" class="cta-button">View my work</a>
</div>
</section>
<section id="skills" class="container">
<h2 class="section-title fade-in">Skills</h2>
<div class="skills-grid">
<div class="skill-card interactive-card fade-in">
<h3>Minecraft dev</h3>
<p>Creating immersive texture packs and mods for both java and bedrock editions, enhancing gameplay
experiences.</p>
<div class="tech-list">
<span class="tech-tag">Java Edition</span>
<span class="tech-tag">Bedrock Edition</span>
<span class="tech-tag">Mod Development</span>
<span class="tech-tag">Fabric</span>
<span class="tech-tag">LeviLamina</span>
</div>
</div>
<div class="skill-card interactive-card fade-in">
<h3>Android dev</h3>
<p>building robust and customizable android apps with beautiful ui/ux on android.</p>
<div class="tech-list">
<span class="tech-tag">Java</span>
<span class="tech-tag">Kotlin</span>
<span class="tech-tag">AIDEPlus</span>
<span class="tech-tag">Native Design</span>
<span class="tech-tag">Extensive APIs</span>
</div>
</div>
<div class="skill-card interactive-card fade-in">
<h3>Web dev</h3>
<p>making blazingly-fast websites with beautiful glassmorphism design.</p>
<div class="tech-list">
<span class="tech-tag">HTML5</span>
<span class="tech-tag">CSS3</span>
<span class="tech-tag">Javascript</span>
</div>
</div>
<div class="skill-card interactive-card fade-in">
<h3>GFX and Pixel art</h3>
<p>Specialized in clean thumbnails and logos alongside lively and stylish pixel art.</p>
<div class="tech-list">
<span class="tech-tag">Pixel Studio</span>
<span class="tech-tag">Picsart</span>
<span class="tech-tag">Minimalism</span>
<span class="tech-tag">Stylized</span>
</div>
</div>
<div class="skill-card interactive-card fade-in">
<h3>Video editing</h3>
<p>editing expressive and clean videos. I make attractive montages and cinematic edits.</p>
<div class="tech-list">
<span class="tech-tag">Alight Motion</span>
<span class="tech-tag">Montages</span>
<span class="tech-tag">Cinematics</span>
<span class="tech-tag">Professional</span>
</div>
</div>
</div>
</section>
<section id="technologies" class="container">
<h2 class="section-title fade-in">Technologies</h2>
<div class="tech-grid fade-in">
<div class="tech-item interactive-card">
<div class="tech-icon"><img src="https://img.icons8.com/?size=100&id=13679&format=png&color=000000"
alt="Java Logo">
</div>
<span>Java</span>
</div>
<div class="tech-item interactive-card">
<div class="tech-icon"><img src="https://img.icons8.com/?size=100&id=ZoxjA0jZDdFZ&format=png&color=000000"
alt="Kotlin Logo">
</div>
<span>Kotlin</span>
</div>
<div class="tech-item interactive-card">
<div class="tech-icon"><img src="https://img.icons8.com/?size=100&id=MOXQrrrUbTVA&format=png&color=000000"
alt="Web">
</div>
<span>HTML/CSS/JS</span>
</div>
<div class="tech-item interactive-card">
<div class="tech-icon"><img src="https://img.icons8.com/?size=100&id=haeAxVQEIg0F&format=png&color=000000"
alt="Rust Logo">
</div>
<span>Rust</span>
</div>
<div class="tech-item interactive-card">
<div class="tech-icon"><img src="https://img.icons8.com/?size=100&id=40669&format=png&color=000000"
1alt="C++ Logo">
</div>
<span>C++</span>
</div>
<div class="tech-item interactive-card">
<div class="tech-icon"><img src="https://img.icons8.com/?size=100&id=haeAxVQEIg0F&format=png&color=000000"
alt="Picsart Logo">
</div>
<span>Picsart</span>
</div>
<div class="tech-item interactive-card">
<div class="tech-icon"><img src="https://i.imgur.com/g0W13V5.png" alt="Alight Motion Logo"></div>
<span>Alight Motion</span>
</div>
<div class="tech-item interactive-card">
<div class="tech-icon"><img src="https://i.imgur.com/Kv4n4Gk.png" alt="Lua Logo"></div>
<span>Lua</span>
</div>
</div>
</section>
<section id="projects" class="container">
<h2 class="section-title fade-in">Featured Projects</h2>
<div class="projects-grid">
<div class="project-card interactive-card fade-in">
<div class="project-image">💙</div>
<div class="project-content">
<h3>Bestilled</h3>
<p>A Java exclusive, first-of-its-kind fully open-source texture pack which revamps the vanilla
look with a stylized touch.</p>
<div class="project-links">
<a href="#projects" class="project-link">Modrinth</a>
<a href="#projects" class="project-link">Source</a>
</div>
</div>
</div>
<div class="project-card interactive-card fade-in">
<div class="project-image">💙</div>
<div class="project-content">
<h3>Origin Client</h3>
<p>A feature-rich, beautiful, and fast open-source client for MCBE.</p>
<div class="project-links">
<a href="#projects" class="project-link">Download</a>
<a href="#projects" class="project-link">Community</a>
<a href="#projects" class="project-link">GitHub</a>
</div>
</div>
</div>
<div class="project-card interactive-card fade-in">
<div class="project-image">💙</div>
<div class="project-content">
<h3>ClasPi</h3>
<p>A sleek and beautiful app that helps you take notes the right way.</p>
<div class="project-links">
<a href="#projects" class="project-link">Source</a>
<a href="#projects" class="project-link">F-droid</a>
</div>
</div>
</div>
</div>
</section>
<section id="organizations" class="container">
<h2 class="section-title fade-in">Organizations</h2>
<div class="org-grid">
<div class="org-card interactive-card fade-in">
<h3>Packaverse</h3>
<p>I'm the founder of Packaverse, an organization that makes utility tools for Minecraft.</p>
</div>
<div class="org-card interactive-card fade-in">
<h3>CosmoMC</h3>
<p>Lead Developer and Founder of Cosmo, an organization</p>
</div>
</div>
</section>
<section id="about" class="container">
<h2 class="section-title fade-in">About Me</h2>
<div class="about-content fade-in">
<p>im a passionate developer with expertise spanning multiple platforms. i found my love for
programming
after delving into texture pack making.</p>
<p>i've expanded my skills to include android app development, web development, and minecraft modding. i
believe in writing clean, efficient code and creating user experiences that are both functional and
delightful.</p>
<p>when im not coding, you'll find me exploring new projects, talking to people, and learning new
things.
</p>
</div>
<div class="about-content fade-in">
<h2 class="section-title fade-in">Content Creation</h2>
<p class="section-subtitle fade-in">
beyond coding, i enjoy sharing my process and connecting with the community on YouTube and Twitch.
</p>
<div class="content-grid">
<div class="channel-card interactive-card fade-in">
<div class="channel-icon">
<svg xmlns="http://www.w3.org/2000/svg" fill="#FF0000" viewBox="0 0 24 24">
<path
d="M10,15L15.19,12L10,9V15M21.56,7.17C21.69,7.64 21.78,8.27 21.84,9.07C21.91,9.87 21.94,10.56 21.94,11.16L22,12C22,14.19 21.84,15.8 21.56,16.83C21.31,17.73 20.73,18.31 19.83,18.56C19.36,18.69 18.73,18.78 17.93,18.84C17.13,18.91 16.44,18.94 15.84,18.94L15,19C12.81,19 11.2,18.84 10.17,18.56C9.27,18.31 8.69,17.73 8.44,16.83C8.31,16.36 8.22,15.73 8.16,14.93C8.09,14.13 8.06,13.44 8.06,12.84L8,12C8,9.81 8.16,8.2 8.44,7.17C8.69,6.27 9.27,5.69 10.17,5.44C10.64,5.31 11.27,5.22 12.07,5.16C12.87,5.09 13.56,5.06 14.16,5.06L15,5C17.19,5 18.8,5.16 19.83,5.44C20.73,5.69 21.31,6.27 21.56,7.17Z">
</path>
</svg>
</div>
<h3>YouTube</h3>
<p>i post development logs, tutorials, and showcases of my projects. subscribe for insights into
my
workflow and upcoming features.</p>
<a href="#" class="channel-link">Visit Channel</a>
</div>
<div class="channel-card interactive-card fade-in">
<div class="channel-icon">
<svg xmlns="http://www.w3.org/2000/svg" fill="#9146FF" viewBox="0 0 24 24">
<path
d="M11.571,4.714h1.715v5.143H11.57V4.714Zm4.714,0h1.715v5.143h-1.715V4.714ZM6,0L1.714,4.286v15.428h5.143V24l4.286-4.286h3.428L22.286,12V0H6Zm14.571,11.143l-3.428,3.428h-3.429l-3,3v-3H6.857V1.714h13.714v9.429Z">
</path>
</svg>
</div>
<h3>Twitch</h3>
<p>Catch me live! I stream coding sessions, gameplay from my mods, and sometimes just hang out
and
chat with the community.</p>
<a href="#" class="channel-link">Follow on Twitch</a>
</div>
</div>
<h2 class="section-title fade-in">Support My Work</h2>
<div class="support-content fade-in">
<p>If you enjoy my projects and content, consider supporting me. Your contribution helps me dedicate
more
time to creating and maintaining open-source work.</p>
<div class="support-links">
<a href="#" class="support-link kofi">Ko-fi</a>
<a href="#" class="support-link patreon">Patreon</a>
</div>
</div>
</div>
</section>
<section id="contact" class="container">
<h2 class="section-title fade-in">Contact Me</h2>
<div class="contact-content fade-in">
<p>I'm always interested in new opportunities and collaborations. Whether you have a project in mind or
just
want to chat, feel free to reach out!</p>
<div class="contact-links">
<a href="mailto:sillysyntax@proton.me" class="contact-link">Email</a>
<a href="https://github.com/SyntacticallySilly" class="contact-link">GitHub</a>
<a href="https://discord.gg/wTDgSRgw" class="contact-link">Discord</a>
<a href="https://x.com/SyntactlySilly" class="contact-link">Twitter</a>
</div>
</div>
</section>
</main>
<footer class="container">
<p>© sillysyntax.</p>
</footer>
<!-- Floating Dock HTML -->
<div class="floating-dock">
<div class="dock-wrapper">
<div class="dock-highlighter"></div>
<nav>
<ul class="dock-links">
<!-- Links are dynamically inserted here by JavaScript -->
</ul>
</nav>
</div>
</div>
<script>
// --- Page Load Animation Logic ---
window.onload = () => {
const preloaderIcon = document.getElementById('preloader-icon');
const floatingDock = document.querySelector('.floating-dock');
// Set a minimum time for the spinner to show
setTimeout(() => {
// Get the position of the floating dock
const dockRect = floatingDock.getBoundingClientRect();
const iconRect = preloaderIcon.getBoundingClientRect();
// Calculate the translation needed to move the icon to the dock's center
const translateX = (dockRect.left + dockRect.width / 2) - (iconRect.left + iconRect.width / 2);
const translateY = (dockRect.top + dockRect.height / 2) - (iconRect.top + iconRect.height / 2);
// Apply the transform to the icon to start its movement and shrink it
preloaderIcon.style.transform = `translate(${translateX}px, ${translateY}px) scale(0.3)`;
preloaderIcon.style.animation = 'none'; // Stop spinning
// Add class to body to trigger fades
document.body.classList.add('loading-finished');
// After the transition ends, hide the preloader completely
preloaderIcon.addEventListener('transitionend', () => {
document.body.classList.add('loading-complete');
}, {
once: true
});
}, 1000); // Minimum spin time: 2 seconds
};
document.addEventListener('DOMContentLoaded', () => {
// --- Element References ---
const floatingDock = document.querySelector('.floating-dock');
const dockLinksContainer = document.querySelector('.dock-links');
const dockHighlighter = document.querySelector('.dock-highlighter');
const sections = Array.from(document.querySelectorAll('main section[id]'));
const sectionData = sections.map(section => ({
id: section.id,
name: section.id.charAt(0).toUpperCase() + section.id.slice(1)