-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1182 lines (989 loc) · 48.3 KB
/
Copy pathindex.html
File metadata and controls
1182 lines (989 loc) · 48.3 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" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Professional portfolio of Santino Aguirre, Lua developer focused on GMod, MTA, server systems, moderation tools and community workflows."
/>
<meta name="author" content="Santino Aguirre" />
<title>Santino Aguirre | Lua Developer</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
background: "#05070d",
panel: "#0b1020",
panelSoft: "#10182b",
accent: "#22d3ee",
accentBlue: "#2563eb"
},
boxShadow: {
glow: "0 0 40px rgba(34, 211, 238, 0.16)"
}
}
}
};
</script>
<style>
body {
background: #05070d;
}
.grid-bg {
background-image:
linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
background-size: 48px 48px;
}
.noise {
background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
background-size: 4px 4px;
opacity: 0.08;
}
.project-media iframe,
.project-media video,
.project-media img {
width: 100%;
height: 100%;
object-fit: cover;
}
</style>
</head>
<body class="bg-background text-white antialiased">
<!-- Background -->
<div class="fixed inset-0 -z-10 overflow-hidden bg-background">
<div class="absolute inset-0 grid-bg"></div>
<div class="absolute inset-0 noise"></div>
<div class="absolute left-1/2 top-[-10rem] h-[32rem] w-[32rem] -translate-x-1/2 rounded-full bg-cyan-500/20 blur-[140px]"></div>
<div class="absolute bottom-[-12rem] right-[-8rem] h-[30rem] w-[30rem] rounded-full bg-blue-700/20 blur-[140px]"></div>
</div>
<!-- Header -->
<header class="sticky top-0 z-50 border-b border-white/10 bg-background/80 backdrop-blur-xl">
<nav class="mx-auto flex max-w-7xl items-center justify-between px-6 py-4">
<a href="#home" class="flex items-center gap-3">
<div class="flex h-10 w-10 items-center justify-center rounded-2xl border border-cyan-400/30 bg-cyan-400/10 text-sm font-bold text-cyan-300 shadow-glow">
SA
</div>
<div>
<p class="text-sm font-semibold leading-none">Santino Aguirre</p>
<p class="mt-1 text-xs text-slate-500">Lua Developer</p>
</div>
</a>
<div class="hidden items-center gap-8 text-sm text-slate-400 md:flex">
<a href="#projects" class="transition hover:text-cyan-300">Projects</a>
<a href="#skills" class="transition hover:text-cyan-300">Skills</a>
<a href="#experience" class="transition hover:text-cyan-300">Experience</a>
<a href="#contact" class="transition hover:text-cyan-300">Contact</a>
</div>
<a
href="#contact"
class="rounded-full border border-cyan-400/30 bg-cyan-400/10 px-5 py-2 text-sm font-medium text-cyan-300 transition hover:bg-cyan-400/20"
>
Get in touch
</a>
</nav>
</header>
<main>
<!-- Hero -->
<section id="home" class="relative overflow-hidden px-6 py-24 md:py-32">
<div class="mx-auto grid max-w-7xl items-center gap-14 lg:grid-cols-[1.1fr_0.9fr]">
<div>
<div class="inline-flex items-center gap-2 rounded-full border border-cyan-400/20 bg-cyan-400/10 px-4 py-2 text-sm text-cyan-300">
<span class="h-2 w-2 rounded-full bg-cyan-300"></span>
Lua Developer · GMod · MTA · Community Management
</div>
<h1 class="mt-8 max-w-4xl text-5xl font-bold tracking-tight md:text-7xl">
I build practical systems for multiplayer communities.
</h1>
<p class="mt-7 max-w-2xl text-lg leading-8 text-slate-400">
I’m Santino Aguirre, a Lua developer focused on GMod and MTA systems.
I like building tools that are useful in real servers: property systems,
admin panels, roleplay mechanics and workflows that make community management easier.
</p>
<p class="mt-5 max-w-2xl text-lg leading-8 text-slate-400">
I usually pay attention to optimization and clean structure, especially when a system
is going to be used by players or staff every day. I try to keep things simple,
stable and easy to maintain.
</p>
<div class="mt-9 flex flex-col gap-4 sm:flex-row">
<a
href="#projects"
class="inline-flex justify-center rounded-full bg-cyan-300 px-7 py-3 text-sm font-semibold text-slate-950 transition hover:bg-cyan-200"
>
View projects
</a>
<a
href="#contact"
class="inline-flex justify-center rounded-full border border-white/10 bg-white/5 px-7 py-3 text-sm font-semibold text-white transition hover:bg-white/10"
>
Contact me
</a>
</div>
<div class="mt-12 grid max-w-2xl grid-cols-2 gap-4 sm:grid-cols-4">
<div class="rounded-3xl border border-white/10 bg-white/[0.03] p-5">
<p class="text-3xl font-bold">4+</p>
<p class="mt-1 text-sm text-slate-500">Years learning & building</p>
</div>
<div class="rounded-3xl border border-white/10 bg-white/[0.03] p-5">
<p class="text-3xl font-bold">31k+</p>
<p class="mt-1 text-sm text-slate-500">Community users</p>
</div>
<div class="rounded-3xl border border-white/10 bg-white/[0.03] p-5">
<p class="text-3xl font-bold">Lua</p>
<p class="mt-1 text-sm text-slate-500">Main language</p>
</div>
<div class="rounded-3xl border border-white/10 bg-white/[0.03] p-5">
<p class="text-3xl font-bold">GMod</p>
<p class="mt-1 text-sm text-slate-500">Main platform</p>
</div>
</div>
</div>
<!-- Hero Media -->
<div class="relative">
<div class="absolute inset-0 rounded-[2rem] bg-cyan-400/20 blur-[100px]"></div>
<div class="relative overflow-hidden rounded-[2rem] border border-white/10 bg-panel/80 p-4 shadow-2xl backdrop-blur">
<div
class="project-media h-[420px] overflow-hidden rounded-[1.5rem] bg-black/30"
data-image="https://images.unsplash.com/photo-1558494949-ef010cbdcc31?q=80&w=1200&auto=format&fit=crop"
data-video=""
></div>
<div class="mt-4 rounded-2xl border border-white/10 bg-black/20 p-5">
<p class="text-sm font-semibold text-white">Current focus</p>
<p class="mt-2 text-sm leading-6 text-slate-400">
Improving my portfolio, documenting my projects and applying my technical
and moderation experience to Roblox marketplace evaluation roles.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- About -->
<section class="px-6 py-20">
<div class="mx-auto grid max-w-7xl gap-8 lg:grid-cols-[0.8fr_1.2fr]">
<div>
<span class="rounded-full border border-cyan-400/20 bg-cyan-400/10 px-4 py-2 text-sm text-cyan-300">
About
</span>
<h2 class="mt-6 text-4xl font-bold tracking-tight">
Developer with real community experience.
</h2>
</div>
<div class="rounded-[2rem] border border-white/10 bg-white/[0.03] p-8">
<p class="text-lg leading-8 text-slate-400">
My work is mostly connected to multiplayer servers and roleplay communities.
I have experience building Lua systems, organizing staff workflows, working with
admin tools and understanding what players and moderators need in daily server activity.
</p>
<p class="mt-5 text-lg leading-8 text-slate-400">
I care about optimization, but I try to keep it practical. For me, a good system
should be stable, readable and easy to use before it tries to be unnecessarily complex.
</p>
<div class="mt-8 grid gap-4 md:grid-cols-3">
<div class="rounded-3xl border border-white/10 bg-panel/70 p-5">
<p class="font-semibold text-white">Server systems</p>
<p class="mt-2 text-sm leading-6 text-slate-500">
Lua scripts, property systems, roleplay mechanics, admin panels and server logic.
</p>
</div>
<div class="rounded-3xl border border-white/10 bg-panel/70 p-5">
<p class="font-semibold text-white">Community work</p>
<p class="mt-2 text-sm leading-6 text-slate-500">
Moderation, staff organization, user reports and internal workflows.
</p>
</div>
<div class="rounded-3xl border border-white/10 bg-panel/70 p-5">
<p class="font-semibold text-white">Practical focus</p>
<p class="mt-2 text-sm leading-6 text-slate-500">
I try to build systems that solve real problems instead of just looking good on paper.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Projects -->
<section id="projects" class="relative px-6 py-24">
<div class="mx-auto max-w-7xl">
<div class="mb-14 max-w-3xl">
<span class="inline-flex items-center rounded-full border border-cyan-400/20 bg-cyan-400/10 px-4 py-2 text-sm text-cyan-300">
Projects
</span>
<h2 class="mt-6 text-4xl font-bold tracking-tight md:text-5xl">
Projects I’ve worked on
</h2>
<p class="mt-5 text-lg leading-8 text-slate-400">
A selection of systems and tools I’ve built or managed for multiplayer communities.
Each project can include an image, a video, or both depending on what I want to showcase.
</p>
</div>
<div class="grid gap-8 md:grid-cols-2 xl:grid-cols-3">
<!-- FJSHousing -->
<article class="group overflow-hidden rounded-[2rem] border border-white/10 bg-white/[0.03] shadow-2xl transition duration-300 hover:-translate-y-1 hover:border-cyan-400/40 hover:bg-white/[0.06]">
<div
class="project-media relative h-56 overflow-hidden bg-black/30"
data-gallery="assets/fjshousing/1.png, assets/fjshousing/2.png, assets/fjshousing/3.png, assets/fjshousing/4.png, assets/fjshousing/5.png, assets/fjshousing/6.png, assets/fjshousing/7.png"
data-video="https://www.youtube.com/watch?v=ymBvihjDKig"
>
<div class="absolute inset-0 bg-gradient-to-t from-background via-background/20 to-transparent"></div>
<div class="absolute bottom-4 left-4 z-10">
<span class="rounded-full border border-cyan-400/30 bg-cyan-400/10 px-3 py-1 text-xs font-medium text-cyan-300 backdrop-blur">
GMod Lua
</span>
</div>
</div>
<div class="p-6">
<h3 class="text-2xl font-semibold tracking-tight">
FJSHousing
</h3>
<p class="mt-3 text-sm leading-6 text-slate-400">
A property system for Garry’s Mod servers. It includes house creation,
ownership, admin tools and support for apartments or interiors.
</p>
<div class="mt-5 space-y-3 text-sm text-slate-400">
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-cyan-400"></span>
Built for roleplay servers that need organized property management.
</p>
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-cyan-400"></span>
Includes admin-side tools to create, edit and manage properties.
</p>
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-cyan-400"></span>
Focused on stability, clean structure and avoiding unnecessary server load.
</p>
</div>
<div class="mt-6 flex flex-wrap gap-2">
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Lua</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">GMod</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Admin Panel</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Roleplay</span>
</div>
</div>
</article>
<!-- FJSDimension -->
<article class="group overflow-hidden rounded-[2rem] border border-white/10 bg-white/[0.03] shadow-2xl transition duration-300 hover:-translate-y-1 hover:border-blue-400/40 hover:bg-white/[0.06]">
<div
class="project-media relative h-56 overflow-hidden bg-black/30"
data-image=""
data-video="https://youtu.be/cYcOaz5UgLQ"
>
<div class="absolute inset-0 bg-gradient-to-t from-background via-background/20 to-transparent"></div>
<div class="absolute bottom-4 left-4 z-10">
<span class="rounded-full border border-blue-400/30 bg-blue-400/10 px-3 py-1 text-xs font-medium text-blue-300 backdrop-blur">
GMod Lua
</span>
</div>
</div>
<div class="p-6">
<h3 class="text-2xl font-semibold tracking-tight">
FJSDimension
</h3>
<p class="mt-3 text-sm leading-6 text-slate-400">
A system for handling separated spaces inside a server, useful for interiors,
apartments, private zones and roleplay scenes.
</p>
<div class="mt-5 space-y-3 text-sm text-slate-400">
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-blue-400"></span>
Helps separate players or interiors without needing different servers.
</p>
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-blue-400"></span>
Designed to work together with property and teleport systems.
</p>
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-blue-400"></span>
Built with simple logic so it can be maintained and expanded.
</p>
</div>
<div class="mt-6 flex flex-wrap gap-2">
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Lua</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">GMod</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Interiors</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Server Logic</span>
</div>
</div>
</article>
<!-- CoreAdmin -->
<article class="group overflow-hidden rounded-[2rem] border border-white/10 bg-white/[0.03] shadow-2xl transition duration-300 hover:-translate-y-1 hover:border-violet-400/40 hover:bg-white/[0.06]">
<div
class="project-media relative h-56 overflow-hidden bg-black/30"
data-gallery="assets/coreadmin/1.png, assets/coreadmin/2.png, assets/coreadmin/3.png, assets/coreadmin/4.png, assets/coreadmin/5.png"
data-video=""
>
<div class="absolute inset-0 bg-gradient-to-t from-background via-background/20 to-transparent"></div>
<div class="absolute bottom-4 left-4 z-10">
<span class="rounded-full border border-violet-400/30 bg-violet-400/10 px-3 py-1 text-xs font-medium text-violet-300 backdrop-blur">
GMod Lua - Admin
</span>
</div>
</div>
<div class="p-6">
<h3 class="text-2xl font-semibold tracking-tight">
CoreAdmin
</h3>
<p class="mt-3 text-sm leading-6 text-slate-400">
An admin system made to help staff members manage a roleplay server faster
and with clearer tools.
</p>
<div class="mt-5 space-y-3 text-sm text-slate-400">
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-violet-400"></span>
Focused on moderation tools and staff workflows.
</p>
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-violet-400"></span>
Designed to make common admin actions easier to find and use.
</p>
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-violet-400"></span>
Built from experience managing real community situations.
</p>
</div>
<div class="mt-6 flex flex-wrap gap-2">
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Lua</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Moderation</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Staff Tools</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">UI</span>
</div>
</div>
</article>
<!-- MTA Systems -->
<article class="group overflow-hidden rounded-[2rem] border border-white/10 bg-white/[0.03] shadow-2xl transition duration-300 hover:-translate-y-1 hover:border-emerald-400/40 hover:bg-white/[0.06]">
<div
class="project-media relative h-56 overflow-hidden bg-black/30"
data-gallery="assets/mta/1.png"
data-video=""
>
<div class="absolute inset-0 bg-gradient-to-t from-background via-background/20 to-transparent"></div>
<div class="absolute bottom-4 left-4 z-10">
<span class="rounded-full border border-emerald-400/30 bg-emerald-400/10 px-3 py-1 text-xs font-medium text-emerald-300 backdrop-blur">
MTA:SA Lua
</span>
</div>
</div>
<div class="p-6">
<h3 class="text-2xl font-semibold tracking-tight">
MTA Roleplay Systems
</h3>
<p class="mt-3 text-sm leading-6 text-slate-400">
Scripts and systems for MTA:SA servers, focused on roleplay mechanics,
server behavior and configuration.
</p>
<div class="mt-5 space-y-3 text-sm text-slate-400">
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-emerald-400"></span>
Experience working with Lua resources and server-side logic.
</p>
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-emerald-400"></span>
Knowledge of XML configuration and resource structure.
</p>
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-emerald-400"></span>
Focused on practical features for roleplay servers.
</p>
</div>
<div class="mt-6 flex flex-wrap gap-2">
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Lua</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">MTA</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">XML</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Roleplay</span>
</div>
</div>
</article>
<!-- Argentina Roleplay -->
<article class="group overflow-hidden rounded-[2rem] border border-white/10 bg-white/[0.03] shadow-2xl transition duration-300 hover:-translate-y-1 hover:border-orange-400/40 hover:bg-white/[0.06]">
<div
class="project-media relative h-56 overflow-hidden bg-black/30"
data-gallery="assets/argrp/1.png, assets/argrp/2.png"
data-video=""
>
<div class="absolute inset-0 bg-gradient-to-t from-background via-background/20 to-transparent"></div>
<div class="absolute bottom-4 left-4 z-10">
<span class="rounded-full border border-orange-400/30 bg-orange-400/10 px-3 py-1 text-xs font-medium text-orange-300 backdrop-blur">
Community Management
</span>
</div>
</div>
<div class="p-6">
<h3 class="text-2xl font-semibold tracking-tight">
Argentina Roleplay
</h3>
<p class="mt-3 text-sm leading-6 text-slate-400">
Community management experience in a large roleplay community with over
31,000 users.
</p>
<div class="mt-5 space-y-3 text-sm text-slate-400">
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-orange-400"></span>
Staff organization, moderation and user support.
</p>
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-orange-400"></span>
Experience turning repeated community problems into better processes.
</p>
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-orange-400"></span>
Useful background for marketplace and user-generated content review.
</p>
</div>
<div class="mt-6 flex flex-wrap gap-2">
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Moderation</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Trello</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Reports</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Leadership</span>
</div>
</div>
</article>
<!-- Workflow -->
<article class="group overflow-hidden rounded-[2rem] border border-white/10 bg-white/[0.03] shadow-2xl transition duration-300 hover:-translate-y-1 hover:border-slate-400/40 hover:bg-white/[0.06]">
<div
class="project-media relative h-56 overflow-hidden bg-black/30"
data-image="https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=1200&auto=format&fit=crop"
data-video=""
>
<div class="absolute inset-0 bg-gradient-to-t from-background via-background/20 to-transparent"></div>
<div class="absolute bottom-4 left-4 z-10">
<span class="rounded-full border border-slate-400/30 bg-slate-400/10 px-3 py-1 text-xs font-medium text-slate-300 backdrop-blur">
Workflow
</span>
</div>
</div>
<div class="p-6">
<h3 class="text-2xl font-semibold tracking-tight">
Workflow & Reports
</h3>
<p class="mt-3 text-sm leading-6 text-slate-400">
Organization and reporting work using Trello, Excel and server panels
to keep staff teams coordinated.
</p>
<div class="mt-5 space-y-3 text-sm text-slate-400">
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-slate-400"></span>
Task boards and internal process organization.
</p>
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-slate-400"></span>
Reports for moderation, staff activity and community management.
</p>
<p class="flex gap-3">
<span class="mt-2 h-2 w-2 rounded-full bg-slate-400"></span>
Experience with server panels and daily operational tools.
</p>
</div>
<div class="mt-6 flex flex-wrap gap-2">
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Trello</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Excel</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">WISP</span>
<span class="rounded-full bg-slate-800 px-3 py-1 text-xs text-slate-300">Operations</span>
</div>
</div>
</article>
</div>
</section>
<!-- Skills -->
<section id="skills" class="px-6 py-24">
<div class="mx-auto max-w-7xl">
<div class="mb-14 max-w-3xl">
<span class="rounded-full border border-cyan-400/20 bg-cyan-400/10 px-4 py-2 text-sm text-cyan-300">
Skills
</span>
<h2 class="mt-6 text-4xl font-bold tracking-tight md:text-5xl">
Tools and areas I work with
</h2>
<p class="mt-5 text-lg leading-8 text-slate-400">
My strongest area is Lua development for multiplayer environments,
supported by moderation experience, server tools and workflow organization.
</p>
</div>
<div class="grid gap-6 lg:grid-cols-3">
<div class="rounded-[2rem] border border-white/10 bg-white/[0.03] p-7">
<h3 class="text-xl font-semibold">Development</h3>
<div class="mt-6 flex flex-wrap gap-3">
<span class="rounded-full bg-cyan-400/10 px-4 py-2 text-sm text-cyan-300">Lua</span>
<span class="rounded-full bg-cyan-400/10 px-4 py-2 text-sm text-cyan-300">GMod Lua</span>
<span class="rounded-full bg-cyan-400/10 px-4 py-2 text-sm text-cyan-300">MTA:SA Lua</span>
<span class="rounded-full bg-cyan-400/10 px-4 py-2 text-sm text-cyan-300">SQL</span>
<span class="rounded-full bg-cyan-400/10 px-4 py-2 text-sm text-cyan-300">XML</span>
<span class="rounded-full bg-cyan-400/10 px-4 py-2 text-sm text-cyan-300">HTML</span>
</div>
</div>
<div class="rounded-[2rem] border border-white/10 bg-white/[0.03] p-7">
<h3 class="text-xl font-semibold">Server work</h3>
<div class="mt-6 flex flex-wrap gap-3">
<span class="rounded-full bg-blue-400/10 px-4 py-2 text-sm text-blue-300">Server Logic</span>
<span class="rounded-full bg-blue-400/10 px-4 py-2 text-sm text-blue-300">Admin Tools</span>
<span class="rounded-full bg-blue-400/10 px-4 py-2 text-sm text-blue-300">Roleplay Systems</span>
<span class="rounded-full bg-blue-400/10 px-4 py-2 text-sm text-blue-300">Property Systems</span>
<span class="rounded-full bg-blue-400/10 px-4 py-2 text-sm text-blue-300">Optimization</span>
<span class="rounded-full bg-blue-400/10 px-4 py-2 text-sm text-blue-300">Debugging</span>
</div>
</div>
<div class="rounded-[2rem] border border-white/10 bg-white/[0.03] p-7">
<h3 class="text-xl font-semibold">Operations</h3>
<div class="mt-6 flex flex-wrap gap-3">
<span class="rounded-full bg-violet-400/10 px-4 py-2 text-sm text-violet-300">Trello</span>
<span class="rounded-full bg-violet-400/10 px-4 py-2 text-sm text-violet-300">Excel</span>
<span class="rounded-full bg-violet-400/10 px-4 py-2 text-sm text-violet-300">WISP</span>
<span class="rounded-full bg-violet-400/10 px-4 py-2 text-sm text-violet-300">Moderation</span>
<span class="rounded-full bg-violet-400/10 px-4 py-2 text-sm text-violet-300">Reports</span>
<span class="rounded-full bg-violet-400/10 px-4 py-2 text-sm text-violet-300">Community Management</span>
</div>
</div>
</div>
</div>
</section>
<!-- Roblox Relevance -->
<section class="px-6 py-24">
<div class="mx-auto max-w-7xl">
<div class="overflow-hidden rounded-[2rem] border border-cyan-400/20 bg-gradient-to-br from-cyan-400/10 via-white/[0.03] to-blue-600/10 p-8 md:p-12">
<div class="grid gap-10 lg:grid-cols-[0.9fr_1.1fr]">
<div>
<span class="rounded-full border border-cyan-400/20 bg-cyan-400/10 px-4 py-2 text-sm text-cyan-300">
Why this matters for Roblox
</span>
<h2 class="mt-6 text-4xl font-bold tracking-tight">
I understand both code and community behavior.
</h2>
<p class="mt-5 text-lg leading-8 text-slate-400">
My experience is not only about writing scripts. Also, I've had a Roblox account for 10 years. I’ve also worked with moderation,
staff teams, player reports and community problems. That helps me review content
with a more practical point of view: how something works, how users interact with it
and what problems it could create.
</p>
</div>
<div class="grid gap-4 md:grid-cols-2">
<div class="rounded-3xl border border-white/10 bg-black/20 p-6">
<p class="text-lg font-semibold">Quality review</p>
<p class="mt-3 text-sm leading-6 text-slate-400">
I’m used to looking at whether a system is clear, usable and practical for real users.
</p>
</div>
<div class="rounded-3xl border border-white/10 bg-black/20 p-6">
<p class="text-lg font-semibold">Moderation mindset</p>
<p class="mt-3 text-sm leading-6 text-slate-400">
Community management experience helps me think about abuse, confusion and user impact.
</p>
</div>
<div class="rounded-3xl border border-white/10 bg-black/20 p-6">
<p class="text-lg font-semibold">Technical context</p>
<p class="mt-3 text-sm leading-6 text-slate-400">
Lua and multiplayer server experience give me a better understanding of game-related systems.
</p>
</div>
<div class="rounded-3xl border border-white/10 bg-black/20 p-6">
<p class="text-lg font-semibold">Process discipline</p>
<p class="mt-3 text-sm leading-6 text-slate-400">
I’m comfortable working with reports, queues, review flows and consistent decision-making.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Experience -->
<section id="experience" class="px-6 py-24">
<div class="mx-auto max-w-7xl">
<div class="mb-14 max-w-3xl">
<span class="rounded-full border border-cyan-400/20 bg-cyan-400/10 px-4 py-2 text-sm text-cyan-300">
Experience
</span>
<h2 class="mt-6 text-4xl font-bold tracking-tight md:text-5xl">
Development and operations in live communities.
</h2>
</div>
<div class="space-y-6">
<div class="rounded-[2rem] border border-white/10 bg-white/[0.03] p-7">
<div class="flex flex-col justify-between gap-4 md:flex-row md:items-start">
<div>
<h3 class="text-2xl font-semibold">Lead Community Manager</h3>
<p class="mt-1 text-cyan-300">Argentina Roleplay</p>
</div>
<span class="rounded-full bg-white/5 px-4 py-2 text-sm text-slate-400">
31,000+ users
</span>
</div>
<p class="mt-5 max-w-4xl leading-7 text-slate-400">
Led community-facing operations, moderation coordination and internal workflows for a large roleplay community.
Worked close to technical and staff needs, helping turn repeated problems into clearer systems and processes.
</p>
</div>
<div class="rounded-[2rem] border border-white/10 bg-white/[0.03] p-7">
<div class="flex flex-col justify-between gap-4 md:flex-row md:items-start">
<div>
<h3 class="text-2xl font-semibold">Lua Systems Developer</h3>
<p class="mt-1 text-cyan-300">GMod / MTA Projects</p>
</div>
<span class="rounded-full bg-white/5 px-4 py-2 text-sm text-slate-400">
Server systems
</span>
</div>
<p class="mt-5 max-w-4xl leading-7 text-slate-400">
Built and maintained Lua systems involving property management, dimensions, admin tooling,
server-side behavior, configuration and interface workflows. Main focus: systems that are useful,
maintainable and reasonably optimized for live server environments.
</p>
</div>
<div class="rounded-[2rem] border border-white/10 bg-white/[0.03] p-7">
<div class="flex flex-col justify-between gap-4 md:flex-row md:items-start">
<div>
<h3 class="text-2xl font-semibold">Technical & Creative Background</h3>
<p class="mt-1 text-cyan-300">Development, reporting and content tools</p>
</div>
<span class="rounded-full bg-white/5 px-4 py-2 text-sm text-slate-400">
Multi-disciplinary
</span>
</div>
<p class="mt-5 max-w-4xl leading-7 text-slate-400">
Experience with Python, SQL, Excel reporting, WISP environments and content tools such as CapCut,
DaVinci Resolve and OpusClip. Currently studying Dramatic Arts at EMAC, bringing communication,
observation and interpretation skills into technical and evaluation work.
</p>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact" class="px-6 py-24">
<div class="mx-auto max-w-7xl">
<div class="rounded-[2rem] border border-white/10 bg-white/[0.03] p-8 text-center md:p-14">
<span class="rounded-full border border-cyan-400/20 bg-cyan-400/10 px-4 py-2 text-sm text-cyan-300">
Contact
</span>
<h2 class="mt-6 text-4xl font-bold tracking-tight md:text-5xl">
Let’s build something useful.
</h2>
<p class="mx-auto mt-5 max-w-2xl text-lg leading-8 text-slate-400">
Open to opportunities involving Lua development, marketplace evaluation,
moderation systems, community operations and multiplayer server tooling.
</p>
<div class="mt-9 flex flex-col justify-center gap-4 sm:flex-row">
<a
href="mailto:aguirresantino85@gmail.com"
class="inline-flex justify-center rounded-full bg-cyan-300 px-7 py-3 text-sm font-semibold text-slate-950 transition hover:bg-cyan-200"
>
Email me
</a>
<a
href="https://github.com/FJS-01"
target="_blank"
rel="noopener noreferrer"
class="inline-flex justify-center rounded-full border border-white/10 bg-white/5 px-7 py-3 text-sm font-semibold text-white transition hover:bg-white/10"
>
GitHub
</a>
<a
href="https://www.linkedin.com/in/santino-aguirre-6345a2198/?locale=es-ES"
target="_blank"
rel="noopener noreferrer"
class="inline-flex justify-center rounded-full border border-white/10 bg-white/5 px-7 py-3 text-sm font-semibold text-white transition hover:bg-white/10"
>
LinkedIn
</a>
</div>
<div class="mt-8 flex flex-col items-center justify-center gap-3 text-sm text-slate-500 sm:flex-row">
<a href="mailto:aguirresantino85@gmail.com" class="transition hover:text-cyan-300">
aguirresantino85@gmail.com
</a>
<span class="hidden text-slate-700 sm:inline">·</span>
<a
href="https://github.com/FJS-01"
target="_blank"
rel="noopener noreferrer"
class="transition hover:text-cyan-300"
>
github.com/FJS-01
</a>
<span class="hidden text-slate-700 sm:inline">·</span>
<a
href="https://www.linkedin.com/in/santino-aguirre-6345a2198/?locale=es-ES"
target="_blank"
rel="noopener noreferrer"
class="transition hover:text-cyan-300"
>
LinkedIn
</a>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="border-t border-white/10 px-6 py-8">
<div class="mx-auto flex max-w-7xl flex-col items-center justify-between gap-4 text-sm text-slate-500 md:flex-row">
<p>© 2026 Santino Aguirre. All rights reserved.</p>
<p>Built with HTML and Tailwind CSS.</p>
</div>
</footer>
<!-- Media Loader -->
<script>
function getYouTubeId(url) {
if (!url) return "";
const normalMatch = url.match(/[?&]v=([^&]+)/);
const shortMatch = url.match(/youtu\.be\/([^?&]+)/);
const embedMatch = url.match(/youtube\.com\/embed\/([^?&]+)/);
if (normalMatch && normalMatch[1]) return normalMatch[1];
if (shortMatch && shortMatch[1]) return shortMatch[1];
if (embedMatch && embedMatch[1]) return embedMatch[1];
return "";
}
function isYouTubeUrl(url) {
return Boolean(getYouTubeId(url));
}
function getYouTubeWatchUrl(url) {
const id = getYouTubeId(url);
return id ? "https://www.youtube.com/watch?v=" + id : url;
}
function getYouTubeThumbnail(url) {
const id = getYouTubeId(url);
return id ? "https://img.youtube.com/vi/" + id + "/hqdefault.jpg" : "";
}
function isDirectVideo(url) {
return /\.(mp4|webm|ogg)(\?.*)?$/i.test(url);
}
function renderYouTubePreview(block, videoUrl, overlay) {
const thumbnail = getYouTubeThumbnail(videoUrl);
const watchUrl = getYouTubeWatchUrl(videoUrl);
block.innerHTML = `
<a
href="${watchUrl}"
target="_blank"
rel="noopener noreferrer"
class="absolute inset-0 block"
aria-label="Open video on YouTube"
>
<img
src="${thumbnail}"
alt="YouTube video preview"
class="absolute inset-0 h-full w-full object-cover transition duration-500 group-hover:scale-105"
loading="lazy"
/>
<div class="absolute inset-0 bg-black/25"></div>
<div class="absolute inset-0 flex items-center justify-center">
<div class="rounded-full border border-white/20 bg-black/60 px-5 py-3 text-sm font-semibold text-white backdrop-blur">
▶ Watch video
</div>
</div>
</a>
${overlay}
`;
}
function loadProjectMedia() {
const mediaBlocks = document.querySelectorAll(".project-media");
mediaBlocks.forEach((block) => {
const imageUrl = block.dataset.image || "";
const videoUrl = block.dataset.video || "";
const overlay = block.innerHTML;
let galleryImage = "";
if (block.dataset.gallery) {
const items = block.dataset.gallery.split(/[,|]\s*/);
for (let item of items) {
const cleanItem = item.trim();
if (cleanItem && !cleanItem.includes("example.com") && !cleanItem.includes("VIDEO_ID")) {
galleryImage = cleanItem;
break;
}
}
}
if (videoUrl && isYouTubeUrl(videoUrl)) {
renderYouTubePreview(block, videoUrl, overlay);
return;
}
if (videoUrl && isDirectVideo(videoUrl)) {
block.innerHTML = `
<video
src="${videoUrl}"
class="absolute inset-0 h-full w-full object-cover"
controls
preload="metadata"
></video>
${overlay}
`;
return;
}
const finalImage = imageUrl || galleryImage;
if (finalImage) {
block.innerHTML = `
<img
src="${finalImage}"
alt="Project preview"
class="absolute inset-0 h-full w-full object-cover transition duration-500 group-hover:scale-105"
loading="lazy"
/>
${overlay}
`;
return;
}
block.innerHTML = `
<div class="absolute inset-0 flex items-center justify-center bg-black/30 p-6 text-center text-sm text-slate-500">
Add an image or video URL in this project card.
</div>
${overlay}
`;
});
}
loadProjectMedia();
// Project modal & gallery
(function () {
let currentGallery = [];
let currentIndex = 0;
function createModal() {
if (document.getElementById("project-modal")) return;
const modal = document.createElement("div");
modal.id = "project-modal";
modal.className = "hidden fixed inset-0 z-50 items-center justify-center p-6";
modal.innerHTML = `
<div class="absolute inset-0 bg-black/70" data-action="close"></div>