-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
367 lines (339 loc) · 24.2 KB
/
index.html
File metadata and controls
367 lines (339 loc) · 24.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - Agus</title>
<link rel="stylesheet" href="./index.css">
<script type="module" src="https://ajax.googleapis.com/ajax/libs/model-viewer/4.0.0/model-viewer.min.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@800&family=Lato:wght@400;700;800&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-LN+7fdVzj6u52u30Kp6M/trliBMCMKTyK833zpbD+pXdCLuTusPj697FH4R/5mcr" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400&display=swap" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="icon" type="image/png" href="assets/favicon-32x32.png">
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/canvas-confetti@1.9.3/dist/confetti.browser.min.js"></script>
<style>
body {
font-family: 'Lato', sans-serif;
background: linear-gradient(180deg, #161616 27%, black 100%);
color: white;
}
.section-title {
font-family: 'Bricolage Grotesque', sans-serif;
}
.glass-card {
background: rgba(217, 217, 217, 0.05);
border: 1px solid #6C6C6C;
box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
backdrop-filter: blur(9.8px);
border-radius: 1.5rem;
}
</style>
</head>
<body class="overflow-x-hidden">
<header class="fixed top-0 left-0 w-full z-50 bg-[#0e0e0e]/80 backdrop-blur-md border-b border-white/10">
<div class="max-w-7xl mx-auto w-full flex justify-between items-center px-4 sm:px-8 py-4">
<img src="./assets/logo.png" alt="Logo" class="w-20 h-auto max-w-full">
<div class="flex gap-3 sm:gap-6 items-center">
<a href="https://www.linkedin.com/in/agustín-buralli-b436b62b7"><img src="./assets/linked_in_logo.png" class="w-12 h-12 sm:w-12 sm:h-12 2xl:w-16 2xl:h-16 max-w-full scale-on-hover" alt="linked_in_logo"></a>
<a href="https://github.com/AgusDropOut"><img src="./assets/github_logo.png" class="w-12 h-12 sm:w-12 sm:h-12 2xl:w-16 2xl:h-16 max-w-full scale-on-hover" alt="github_logo"></a>
<a href="mailto:dropoutagus@gmail.com"><img src="./assets/email_logo.png" class="w-12 h-12 sm:w-12 sm:h-12 2xl:w-16 2xl:h-16 max-w-full scale-on-hover" alt="email_logo"></a>
</div>
</div>
</header>
<main class="pt-24">
<section class="relative flex flex-col md:flex-row items-center justify-center px-8 py-12 space-y-8 md:space-y-0 md:space-x-10 mt-12">
<img src="./assets/grid.png" alt="" class="absolute sm:object-none -z-10 mi-grid-ancha " />
<model-viewer class="z-20" src="./assets/custom_ore_portfolio.glb" alt="compaq" auto-rotate camera-controls auto-rotate-delay="0" camera-orbit="-90deg 0 0" interaction-prompt="none" disable-zoom style="width:250px;height:250px"></model-viewer>
<div class="max-w-2xl text-left sm:text-left border-l-2 border-b-2 border-white">
<h1 class="say-hi text-6xl font-extrabold section-title animate-on-scroll pl-7 pb-1">HI, I’M AGUS</h1>
<p class="normal-text mt-3 text-lg italic pl-7 pb-4 ">
I’m an advanced<strong class="font-extrabold"> Software Engineering </strong> student with a strong passion for designing and developing responsive, secure, and efficient systems for data management. I focus on building solutions that are not only functional but also optimized for performance, being confortable on both high and low level programing. <br>
I enjoy working across all layers of a system, from architecture to implementation, and focus on writing clean, maintainable, and scalable code. My academic background, combined with a hands-on approach to problem-solving, allows me to create solutions that are orientated to real-world needs.
</p>
</div>
</section>
<img id="vaporwave-sun" src="./assets/vaporwave_sun.png" alt="Vaporwave Sun" class="absolute animate-on-scroll left-1/2 -translate-x-1/2 top-43 -z-10 w-[1000px] opacity-80 pointer-events-none">
<section class="py-20 px-4 max-w-full overflow-x-hidden">
<h2 id="tech-stack" class="text-5xl md:text-8xl font-extrabold tech-stack section-title animate-on-scroll">TECH STACK</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 gap-6 mt-5">
<div class="glass-card p-4 text-center animate-on-scroll">
<h3 class="text-2xl md:text-3xl font-bold">WEB DEV.</h3>
<div class="mt-4 grid grid-cols-2 gap-6 place-items-center">
<img src="./assets/html5.png" class="h-12 w-12 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="HTML">
<img src="./assets/css3.png" class="h-12 w-12 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="CSS">
<img src="./assets/js.png" class="h-12 w-12 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="JavaScript">
<img src="./assets/php.png" class="h-12 w-12 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="PHP">
<img src="./assets/postgresql.png" class="h-12 w-12 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="PostgreSQL">
<img src="./assets/mysql.png" class="h-12 w-12 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="MySQL">
<img src="./assets/mongodb.png" class="h-12 w-12 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="MongoDB">
<img src="./assets/bootstrap5.png" class="h-12 w-12 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="Bootstrap 5">
</div>
</div>
<div class="grid grid-rows-2 gap-8">
<div class="glass-card p-4 text-center animate-on-scroll">
<h3 class="text-2xl md:text-3xl font-bold">LANGUAGES</h3>
<div class="mt-4 grid grid-cols-2 gap-4 place-items-center">
<img src="./assets/java.png" class="h-10 w-10 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="Java">
<img src="./assets/python.png" class="h-10 w-10 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="Python">
<img src="./assets/c++.png" class="h-10 w-10 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="C++">
<img src="./assets/rust.png" class="h-10 w-10 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="Rust">
</div>
</div>
<div class="glass-card p-4 text-center animate-on-scroll">
<h3 class="text-2xl md:text-3xl font-bold">TOOLS</h3>
<div class="mt-4 grid grid-cols-3 gap-4 place-items-center">
<img src="./assets/git.png" class="h-10 w-10 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="Git">
<img src="./assets/github.png" class="h-10 w-10 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="GitHub">
<img src="./assets/figma.png" class="h-10 w-10 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="Figma">
<img src="./assets/miro.png" class="h-10 w-10 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="Miro">
<img src="./assets/bash.png" class="h-10 w-10 sm:h-16 sm:w-16 object-contain scale-on-hover" alt="Bash">
</div>
</div>
</div>
</div>
</section>
<section id="projects" class="py-20 px-8 relative overflow-hidden">
<!-- Fondo de estrellas solo para esta sección -->
<canvas id="projects-stars" class="absolute inset-0 -z-10 pointer-events-none"></canvas>
<h2 id="projects" class="text-8xl font-extrabold say-hi section-title ml-10 animate-on-scroll">MY PROJECTS</h2>
<div class="w-full flex flex-col gap-12 mt-12 px-4
[&>div:nth-child(odd)]:mr-auto
[&>div:nth-child(even)]:ml-auto">
<div class="max-w-6xl text-right items-end">
<div class="glass-card p-6 rounded-3xl shadow-lg animate-on-scroll">
<div class="grid lg:grid-cols-2 gap-6 items-center">
<div>
<a href="https://www.licmarcelabarbero.com" target="_blank" rel="noopener">
<h3 class="text-3xl text-section font-extrabold mb-4 text-left">PATIENT MANAGEMENT SYSTEM <i class="bi bi-link-45deg"></i></h3>
</a>
<p class="text-section text-lg text-white text-justify">
Currently operational web platform for occupational therapy, actively managing over 1000+ registered patients. Patients independently register personal data, and the therapist promotes them to official medical records when needed. Features include secure image uploads, insurance tracking, and medical referrals.
</p>
</div>
<img src="./assets/patient_management_system-image_1.png" class="rounded-lg shadow-lg scale-on-hover" alt="Patient Management Platform">
</div>
<div class="grid lg:grid-cols-2 gap-6 mt-6 items-center">
<img src="./assets/patient_management_system-image_2.png" class="rounded-lg shadow-lg scale-on-hover" alt="Medical Records Interface">
<div class="flex flex-col gap-4">
<p class="text-justify text-lg text-section">
Built to streamline administrative workflows while offering a secure experience. Developed entirely with PHP, MySQL, and Bootstrap. The frontend architecture intentionally omits JavaScript to guarantee a lightweight, fast-loading, and highly accessible interface across all devices.
</p>
<div class="flex flex-wrap gap-2 justify-end mt-2">
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">PHP</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">MySQL</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Bootstrap</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Lightweight Architecture</span>
</div>
</div>
</div>
</div>
</div>
<div class="max-w-6xl text-right items-end">
<div class="glass-card p-6 rounded-3xl shadow-lg animate-on-scroll">
<div class="grid lg:grid-cols-2 gap-6 items-center">
<div>
<a href="https://www.curseforge.com/minecraft/mc-mods/bloody-hell" target="_blank" rel="noopener">
<h3 class="text-3xl text-section font-extrabold mb-4 text-left">BLOODY HELL! A MINECRAFT MOD <i class="bi bi-link-45deg"></i></h3>
</a>
<p class="text-section text-lg text-white text-justify">
A large-scale game modification developed entirely in Java using the Forge API. It expands the core game engine by implementing custom dimensions, complex entity behaviors, and advanced functional mechanics.
</p>
</div>
<img src="./assets/bloody_hell-image_1.png" class="rounded-lg shadow-lg scale-on-hover" alt="Custom Dimension Environment">
</div>
<div class="grid lg:grid-cols-2 gap-6 mt-6 items-center">
<img src="./assets/bloody_hell-image_2.png" class="rounded-lg shadow-lg scale-on-hover" alt="Custom Rendering and Entity Logic">
<div class="flex flex-col gap-4">
<p class="text-justify text-lg text-section">
The project emphasizes object-oriented programming principles and modular system design within a highly constrained sandbox environment. Key technical implementations include custom rendering pipelines utilizing BlockEntityRenderers, event-driven state management, and optimized particle generation.
</p>
<div class="flex flex-wrap gap-2 justify-end mt-2">
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Java</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Forge API</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">OOP</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Event-Driven Architecture</span>
</div>
</div>
</div>
</div>
</div>
<div class="max-w-6xl text-right items-end">
<div class="glass-card p-6 rounded-3xl shadow-lg animate-on-scroll">
<div class="grid lg:grid-cols-2 gap-6 items-center">
<div>
<a href="https://github.com/Tomasgithub01/ProgWeb" target="_blank" rel="noopener">
<h3 class="text-3xl text-section font-extrabold mb-4 text-left">GAMES LIBRARY MANAGER <i class="bi bi-github"></i></h3>
</a>
<p class="text-section text-lg text-white text-justify">
Full-stack web application developed in Go to manage and track personal video game libraries. It integrates directly with the Steam API to fetch real-time game data and images, dynamically populating the catalog without heavy local storage requirements.
</p>
</div>
<img src="./assets/progweb-image_1.png" class="rounded-lg shadow-lg scale-on-hover" alt="Games Library Dashboard">
</div>
<div class="grid lg:grid-cols-2 gap-6 mt-6 items-center">
<img src="./assets/progweb-image_2.png" class="rounded-lg shadow-lg scale-on-hover" alt="Game Status Tracking">
<div class="flex flex-col gap-4">
<p class="text-justify text-lg text-section">
The platform features a secure authentication system and custom tracking states. By utilizing HTMX, the project implements a lightweight Server-Side Rendering (SSR) architecture, entirely avoiding the overhead of Client-Side Rendering (CSR) for seamless and fast user interactions. Everything is backed by a PostgreSQL database and containerized using Docker.
</p>
<div class="flex flex-wrap gap-2 justify-end mt-2">
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Go</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">HTMX</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">SSR</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">PostgreSQL</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Docker</span>
</div>
</div>
</div>
</div>
</div>
<div class="max-w-6xl text-right items-end">
<div class="glass-card p-6 rounded-3xl shadow-lg animate-on-scroll">
<div class="grid lg:grid-cols-2 gap-6 items-center">
<div>
<a href="https://github.com/AgusDropOut/Compilador" target="_blank" rel="noopener">
<h3 class="text-3xl text-section font-extrabold mb-4 text-left">WEBASSEMBLY COMPILER <i class="bi bi-github"></i></h3>
</a>
<p class="text-section text-lg text-white text-justify">
A custom compiler built from scratch that translates a statically typed, high-level language into WebAssembly (Wasm) executable code. It implements full lexical, syntactic, and semantic analysis phases.
</p>
</div>
<img src="./assets/compiler-image_1.png" class="rounded-lg shadow-lg scale-on-hover" alt="Compiler Architecture">
</div>
<div class="grid lg:grid-cols-2 gap-6 mt-6 items-center">
<img src="./assets/compiler-image_2.png" class="rounded-lg shadow-lg scale-on-hover" alt="WebAssembly Output">
<div class="flex flex-col gap-4">
<p class="text-justify text-lg text-section">
The architecture uses tercetos (triples) for its intermediate representation to structure the translation process before generating the final Wasm text format. It also features an integrated local server that automatically executes the compiled binary, displaying the standard output via an interactive browser console pop-out.
</p>
<div class="flex flex-wrap gap-2 justify-end mt-2">
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Java</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Yacc/CUP</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">WebAssembly</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Compiler Theory</span>
</div>
</div>
</div>
</div>
</div>
<div class="max-w-6xl text-right items-end">
<div class="glass-card p-6 rounded-3xl shadow-lg animate-on-scroll">
<div class="grid lg:grid-cols-2 gap-6 items-center">
<div>
<a href="https://github.com/AgusDropOut/Teoria-de-la-informacion" target="_blank" rel="noopener">
<h3 class="text-3xl text-section font-extrabold mb-4 text-left">INFORMATION THEORY & COMPRESSION <i class="bi bi-github"></i></h3>
</a>
<p class="text-section text-lg text-white text-justify">
A mathematical data analysis project that applies Information Theory concepts to real-world meteorological datasets. It models weather patterns using Markov Chains and utilizes Monte Carlo simulations to calculate stationary probabilities and mean recurrence times.
</p>
</div>
<img src="./assets/infotheory-image_1.png" class="rounded-lg shadow-lg scale-on-hover" alt="Monte Carlo Convergence Graph">
</div>
<div class="grid lg:grid-cols-2 gap-6 mt-6 items-center">
<img src="./assets/infotheory-image_2.png" class="rounded-lg shadow-lg scale-on-hover" alt="Huffman Compression Output">
<div class="flex flex-col gap-4">
<p class="text-justify text-lg text-section">
The core of the project focuses on algorithmic efficiency and data encoding. It features a custom, from-scratch implementation of the Huffman compression algorithm (utilizing min-heaps and binary trees) to verify Shannon's Source Coding Theorem. It also calculates entropy, channel noise, and mutual information.
</p>
<div class="flex flex-wrap gap-2 justify-end mt-2">
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Python</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Algorithms</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Data Compression</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Statistics</span>
</div>
</div>
</div>
</div>
</div>
<div class="max-w-6xl text-right items-end">
<div class="glass-card p-6 rounded-3xl shadow-lg animate-on-scroll">
<div class="grid lg:grid-cols-2 gap-6 items-center">
<div>
<a href="https://github.com/Arimochin/TPE-FundamentosCienciaDatos" target="_blank" rel="noopener">
<h3 class="text-3xl text-section font-extrabold mb-4 text-left">SPOTIFY DATA EXPLORATION <i class="bi bi-github"></i></h3>
</a>
<p class="text-section text-lg text-white text-justify">
A comprehensive Exploratory Data Analysis (EDA) project investigating the acoustic and metadata features of 90s music covers to determine factors influencing song popularity. Developed using Python, Pandas, and Scikit-learn.
</p>
</div>
<img src="./assets/datascience-image_1.png" class="rounded-lg shadow-lg scale-on-hover" alt="PCA Dimensionality Reduction">
</div>
<div class="grid lg:grid-cols-2 gap-6 mt-6 items-center">
<img src="./assets/datascience-image_2.png" class="rounded-lg shadow-lg scale-on-hover" alt="Clustering Evaluation Metrics">
<div class="flex flex-col gap-4">
<p class="text-justify text-lg text-section">
The analysis goes beyond simple visualizations by applying rigorous statistical hypothesis testing (ANOVA, Kruskal-Wallis, Mann-Whitney U) to validate correlations between audio features (e.g., Energy, Loudness, Acousticness). It also implements dimensionality reduction (PCA, t-SNE) and compares K-Means with Hierarchical Clustering to identify distinct musical subgenres based on audio data.
</p>
<div class="flex flex-wrap gap-2 justify-end mt-2">
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Python</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Scikit-learn</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Pandas</span>
<span class="bg-white/10 px-3 py-1 rounded-full text-sm font-bold">Statistical Testing</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div id="video-container" class="hidden fixed inset-0 z-40 flex flex-col items-center justify-center bg-black/80 space-y-4">
<video id="miku-video" src="./assets/miku_beam.mp4" class="max-w-full max-h-[80vh] rounded-lg shadow-lg" preload="auto"></video>
<!-- Botón debajo del video -->
<button id="close-party"
class="hidden mt-4 p-3 rounded-full bg-red-600 text-white hover:bg-red-700 shadow-lg transition-all duration-200">
<i class="bi bi-x-lg text-2xl"></i>
</button>
</div>
</main>
<footer class="mt-24 border-t border-white/10 bg-[#0e0e0e]/60 backdrop-blur-md">
<div class="max-w-7xl mx-auto px-4 sm:px-8 py-10">
<div class="flex flex-col md:flex-row md:items-center md:justify-between gap-8">
<!-- Brand / mini bio -->
<div class="max-w-md">
<h3 class="text-xl font-bold">Agustín — Software Engineering</h3>
<p class="text-sm text-gray-400 mt-2">
Building responsive, secure & efficient systems. From low-level to high-level, focusing always on performance y clean code.
</p>
</div>
<!-- Quick nav -->
<nav class="flex flex-wrap gap-4 text-gray-300 text-sm">
<a href="#top" class="hover:text-white transition-colors">Home</a>
<a href="#tech-stack" class="hover:text-white transition-colors">Tech Stack</a>
<a href="#projects" class="hover:text-white transition-colors">Projects</a>
<a href="#contact" class="hover:text-white transition-colors">Contact</a>
</nav>
<!-- Social -->
<div class="flex items-center gap-4 text-2xl">
<!-- Con Bootstrap Icons -->
<a href="https://www.linkedin.com/in/agustín-buralli-b436b62b7" target="_blank" rel="noopener" aria-label="LinkedIn"
class="text-gray-300 hover:text-white transition-colors scale-on-hover">
<i class="bi bi-linkedin"></i>
</a>
<a href="https://github.com/AgusDropOut" target="_blank" rel="noopener" aria-label="GitHub"
class="text-gray-300 hover:text-white transition-colors scale-on-hover">
<i class="bi bi-github"></i>
</a>
<a href="mailto:dropoutagus@gmail.com" aria-label="Email"
class="text-gray-300 hover:text-white transition-colors scale-on-hover">
<i class="bi bi-envelope-fill"></i>
</a>
</div>
</div>
<div class="border-t border-white/10 mt-8 pt-6 text-center text-xs text-gray-500">
© <span id="year"></span> Agustín. All rights reserved. <button id="special-btn"class="shadow-lg hover:bg-purple-700"><i class="bi bi-star-fill text-yellow-500"></i></button>
</div>
</div>
</footer>
<script>
// Año automático
document.getElementById('year').textContent = new Date().getFullYear();
</script>
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script>
<script src="./script.js"></script>
</body>
</html>