-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
483 lines (450 loc) · 29.6 KB
/
index.html
File metadata and controls
483 lines (450 loc) · 29.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MyWeb as is, User_425</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/js/all.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body class="bg-gray-900 text-white overflow-x-hidden">
<!-- Navigation -->
<nav class="fixed top-0 w-full bg-gray-900 z-50 border-b border-gray-800">
<div class="container mx-auto px-6 py-4">
<div class="flex justify-between items-center">
<div class="text-2xl font-bold text-blue-400">
User_425
</div>
<div class="hidden md:flex space-x-8">
<a href="#home" class="nav-link text-gray-300 hover:text-white">Home</a>
<a href="#about" class="nav-link text-gray-300 hover:text-white">About</a>
<a href="#skills" class="nav-link text-gray-300 hover:text-white">Skills</a>
<a href="#projects" class="nav-link text-gray-300 hover:text-white">Projects</a>
<a href="#contact" class="nav-link text-gray-300 hover:text-white">Contact</a>
</div>
<button id="mobile-menu-btn" class="md:hidden text-gray-300">
<i data-lucide="menu" class="w-6 h-6"></i>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="md:hidden bg-gray-900 border-t border-gray-800 hidden">
<div class="container mx-auto px-6 py-4 space-y-4">
<a href="#home" class="block text-gray-300 hover:text-white">Home</a>
<a href="#about" class="block text-gray-300 hover:text-white">About</a>
<a href="#skills" class="block text-gray-300 hover:text-white">Skills</a>
<a href="#projects" class="block text-gray-300 hover:text-white">Projects</a>
<a href="#contact" class="block text-gray-300 hover:text-white">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="min-h-screen flex items-center justify-center relative overflow-hidden">
<!-- Animated Background -->
<div class="absolute inset-0 bg-gray-900"></div>
<div class="absolute inset-0 bg-[url('data:image/svg+xml,%3Csvg width=" 60" height="60" viewBox="0 0 60 60"
xmlns="http://www.w3.org/2000/svg" %3E%3Cg fill="none" fill-rule="evenodd" %3E%3Cg fill="%239C92AC"
fill-opacity="0.05" %3E%3Ccircle cx="30" cy="30" r="4" /%3E%3C/g%3E%3C/g%3E%3C/svg%3E')] opacity-40"></div>
<!-- Floating Elements -->
<div class="floating-element absolute top-20 left-10 w-20 h-20 bg-blue-500/10 rounded-full blur-xl"></div>
<div class="floating-element absolute bottom-32 right-20 w-32 h-32 bg-blue-500/10 rounded-full blur-xl"></div>
<div class="floating-element absolute top-1/2 left-1/4 w-16 h-16 bg-blue-500/10 rounded-full blur-xl"></div>
<div class="container mx-auto px-6 text-center relative z-10">
<div class="animate-fade-in-up">
<h1 class="text-5xl md:text-7xl font-bold mb-6">
Hi, I'm <span class="text-blue-400">User_425</span>
</h1>
<div class="text-xl md:text-2xl text-gray-300 mb-8 h-8">
<span id="typed-text"></span>
<span class="animate-pulse">|</span>
</div>
<p class="text-lg text-gray-400 max-w-2xl mx-auto mb-12 leading-relaxed">
Passionate informatics engineering student crafting innovative solutions through code, design, and
technology.
Transforming ideas into digital experiences.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<a href="#projects"
class="group bg-blue-600 hover:bg-blue-700 px-8 py-4 rounded-full font-semibold transition-all duration-300 transform hover:scale-105">
View My Work
<i data-lucide="arrow-right"
class="inline w-4 h-4 ml-2 group-hover:translate-x-1 transition-transform duration-300"></i>
</a>
<a href="#contact"
class="border-2 border-gray-600 hover:border-blue-400 px-8 py-4 rounded-full font-semibold transition-all duration-300 transform hover:scale-105 hover:bg-blue-400/10">
Get In Touch
</a>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gray-800/50">
<div class="container mx-auto px-6">
<div class="max-w-4xl mx-auto">
<h2 class="text-4xl font-bold text-center mb-16 text-blue-400">
About Me
</h2>
<div class="grid md:grid-cols-2 gap-12 items-center">
<div class="space-y-6">
<p class="text-lg text-gray-300 leading-relaxed">
I'm a dedicated informatics engineering student with a passion for creating innovative
digital solutions.
Currently pursuing my Bachelor's degree, I'm constantly exploring new technologies and
methodologies.
</p>
<p class="text-lg text-gray-300 leading-relaxed">
My journey in technology began with curiosity and has evolved into a deep commitment to
solving complex problems
through elegant code and thoughtful design.
</p>
<div class="grid grid-cols-2 gap-6 pt-6">
<div class="text-center">
<div class="text-3xl font-bold text-blue-400 mb-2">5+</div>
<div class="text-gray-400">Years Coding</div>
</div>
<div class="text-center">
<div class="text-3xl font-bold text-blue-400 mb-2">5+</div>
<div class="text-gray-400">Projects</div>
</div>
</div>
</div>
<div class="relative">
<div class="w-full h-96 bg-gray-800 rounded-2xl border border-gray-700 overflow-hidden">
<div class="absolute inset-4 bg-slate-900 rounded-xl border border-gray-600 p-6">
<div class="space-y-4">
<div class="flex items-center space-x-3">
<div class="w-3 h-3 bg-red-500 rounded-full"></div>
<div class="w-3 h-3 bg-yellow-500 rounded-full"></div>
<div class="w-3 h-3 bg-green-500 rounded-full"></div>
</div>
<div class="font-mono text-sm space-y-2 text-gray-300">
<div class="text-blue-400">const</div>
<div class="ml-4 text-blue-400">student = {</div>
<div class="ml-8">name: <span class="text-blue-400">"User_425"</span>,</div>
<div class="ml-8">degree: <span class="text-blue-400">"Informatics
Engineering"</span>,</div>
<div class="ml-8">year: <span class="text-blue-400">3</span>,</div>
<div class="ml-8">passion: <span class="text-blue-400">"Innovation"</span>,
</div>
<div class="ml-8">status: <span class="text-blue-400">"Learning about life.."</span></div>
<div class="ml-4 text-blue-400">};</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<!-- Skills Section -->
<section id="skills" class="py-20 bg-gray-900">
<div class="container mx-auto px-6">
<div class="max-w-6xl mx-auto">
<h2 class="text-4xl font-bold text-center mb-16 text-blue-400">
Skills & Technologies
</h2>
<!-- Skills Grid -->
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 xl:grid-cols-6 gap-6 max-w-6xl mx-auto">
<!-- HTML -->
<div class="group bg-gray-800/50 p-6 rounded-xl border border-gray-700 hover:border-orange-400 hover:bg-gray-800 transition-all duration-300 text-center">
<div class="w-12 h-12 mx-auto mb-4 bg-orange-500/10 rounded-lg flex items-center justify-center group-hover:bg-orange-500/20 transition-colors">
<i class="fa-brands fa-html5 text-3xl text-orange-500"></i>
</div>
<h3 class="font-semibold text-gray-200 group-hover:text-white transition-colors">HTML</h3>
</div>
<!-- CSS -->
<div class="group bg-gray-800/50 p-6 rounded-xl border border-gray-700 hover:border-blue-400 hover:bg-gray-800 transition-all duration-300 text-center">
<div class="w-12 h-12 mx-auto mb-4 bg-blue-500/10 rounded-lg flex items-center justify-center group-hover:bg-blue-500/20 transition-colors">
<i class="fa-brands fa-css3-alt text-3xl text-blue-400"></i>
</div>
<h3 class="font-semibold text-gray-200 group-hover:text-white transition-colors">CSS</h3>
</div>
<!-- JavaScript -->
<div class="group bg-gray-800/50 p-6 rounded-xl border border-gray-700 hover:border-yellow-400 hover:bg-gray-800 transition-all duration-300 text-center">
<div class="w-12 h-12 mx-auto mb-4 bg-yellow-500/10 rounded-lg flex items-center justify-center group-hover:bg-yellow-500/20 transition-colors">
<i class="fa-brands fa-js text-3xl text-yellow-400"></i>
</div>
<h3 class="font-semibold text-gray-200 group-hover:text-white transition-colors">JavaScript</h3>
</div>
<!-- Git -->
<div class="group bg-gray-800/50 p-6 rounded-xl border border-gray-700 hover:border-red-500 hover:bg-gray-800 transition-all duration-300 text-center">
<div class="w-12 h-12 mx-auto mb-4 bg-red-500/10 rounded-lg flex items-center justify-center group-hover:bg-red-500/20 transition-colors">
<i class="fa-brands fa-git-alt text-3xl text-red-500"></i>
</div>
<h3 class="font-semibold text-gray-200 group-hover:text-white transition-colors">Git</h3>
</div>
<!-- Discord.js -->
<div class="group bg-gray-800/50 p-6 rounded-xl border border-gray-700 hover:border-indigo-400 hover:bg-gray-800 transition-all duration-300 text-center">
<div class="w-12 h-12 mx-auto mb-4 bg-indigo-500/10 rounded-lg flex items-center justify-center group-hover:bg-indigo-500/20 transition-colors">
<i class="fa-brands fa-discord text-3xl text-indigo-400"></i>
</div>
<h3 class="font-semibold text-gray-200 group-hover:text-white transition-colors">Discord.js</h3>
</div>
<!-- PHP -->
<div class="group bg-gray-800/50 p-6 rounded-xl border border-gray-700 hover:border-indigo-300 hover:bg-gray-800 transition-all duration-300 text-center">
<div class="w-12 h-12 mx-auto mb-4 bg-indigo-300/10 rounded-lg flex items-center justify-center group-hover:bg-indigo-300/20 transition-colors">
<i class="fa-brands fa-php text-3xl text-indigo-300"></i>
</div>
<h3 class="font-semibold text-gray-200 group-hover:text-white transition-colors">PHP</h3>
</div>
<!-- Laravel -->
<div class="group bg-gray-800/50 p-6 rounded-xl border border-gray-700 hover:border-red-400 hover:bg-gray-800 transition-all duration-300 text-center">
<div class="w-12 h-12 mx-auto mb-4 bg-red-400/10 rounded-lg flex items-center justify-center group-hover:bg-red-400/20 transition-colors">
<i class="fa-brands fa-laravel text-3xl text-red-400"></i>
</div>
<h3 class="font-semibold text-gray-200 group-hover:text-white transition-colors">Laravel</h3>
</div>
<!-- C# -->
<div class="group bg-gray-800/50 p-6 rounded-xl border border-gray-700 hover:border-purple-400 hover:bg-gray-800 transition-all duration-300 text-center">
<div class="w-12 h-12 mx-auto mb-4 bg-purple-500/10 rounded-lg flex items-center justify-center group-hover:bg-purple-500/20 transition-colors">
<i class="fa-solid fa-code text-3xl text-purple-400"></i>
</div>
<h3 class="font-semibold text-gray-200 group-hover:text-white transition-colors">C#</h3>
</div>
<!-- Unity -->
<div class="group bg-gray-800/50 p-6 rounded-xl border border-gray-700 hover:border-gray-400 hover:bg-gray-800 transition-all duration-300 text-center">
<div class="w-12 h-12 mx-auto mb-4 bg-gray-400/10 rounded-lg flex items-center justify-center group-hover:bg-gray-400/20 transition-colors">
<i class="fa-brands fa-unity text-3xl text-gray-300"></i>
</div>
<h3 class="font-semibold text-gray-200 group-hover:text-white transition-colors">Unity</h3>
</div>
<!-- Lua -->
<div class="group bg-gray-800/50 p-6 rounded-xl border border-gray-700 hover:border-blue-300 hover:bg-gray-800 transition-all duration-300 text-center">
<div class="w-12 h-12 mx-auto mb-4 bg-blue-300/10 rounded-lg flex items-center justify-center group-hover:bg-blue-300/20 transition-colors">
<i class="fa-solid fa-moon text-3xl text-blue-300"></i>
</div>
<h3 class="font-semibold text-gray-200 group-hover:text-white transition-colors">Lua</h3>
</div>
<!-- Java -->
<div class="group bg-gray-800/50 p-6 rounded-xl border border-gray-700 hover:border-orange-300 hover:bg-gray-800 transition-all duration-300 text-center">
<div class="w-12 h-12 mx-auto mb-4 bg-orange-300/10 rounded-lg flex items-center justify-center group-hover:bg-orange-300/20 transition-colors">
<i class="fa-brands fa-java text-3xl text-orange-300"></i>
</div>
<h3 class="font-semibold text-gray-200 group-hover:text-white transition-colors">Java</h3>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 bg-gray-800/50">
<div class="container mx-auto px-6">
<div class="max-w-6xl mx-auto">
<h2 class="text-4xl font-bold text-center mb-16 text-blue-400">
My Projects <3
</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div
class="project-card group bg-gray-900 rounded-xl overflow-hidden border border-gray-700 hover:border-blue-500/50 transition-all duration-300 hover:transform hover:scale-105">
<div class="aspect-video bg-gray-800 relative overflow-hidden">
<div
class="absolute inset-0 bg-black/20 group-hover:bg-black/10 transition-all duration-300">
</div>
<div class="absolute inset-0 flex items-center justify-center">
<img src="img/EzArabic.png" alt="">
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-3">EzArabic</h3>
<p class="text-gray-400 mb-4">A simple website to convert Roman script into Arabic script</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 text-xs bg-gray-700 text-gray-300 rounded-full">HTML</span>
<span class="px-3 py-1 text-xs bg-gray-700 text-gray-300 rounded-full">CSS</span>
<span class="px-3 py-1 text-xs bg-gray-700 text-gray-300 rounded-full">JS</span>
</div>
<div class="flex space-x-4">
<a href="https://user-425.github.io/EzArabic/" target="_blank"
class="flex items-center text-blue-400 hover:text-blue-300 transition-colors duration-300">
<i data-lucide="external-link" class="w-4 h-4 mr-2"></i>
Demo
</a>
<a href="https://github.com/User-425/EzArabic" target="_blank"
class="flex items-center text-gray-400 hover:text-gray-300 transition-colors duration-300">
<i data-lucide="github" class="w-4 h-4 mr-2"></i>
Code
</a>
</div>
</div>
</div>
<div
class="project-card group bg-gray-900 rounded-xl overflow-hidden border border-gray-700 hover:border-blue-500/50 transition-all duration-300 hover:transform hover:scale-105">
<div class="aspect-video bg-gray-800 relative overflow-hidden">
<div
class="absolute inset-0 bg-black/20 group-hover:bg-black/10 transition-all duration-300">
</div>
<div class="absolute inset-0 flex items-center justify-center">
<img src="img/SiLapor.png" alt="">
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-3">SiLapor</h3>
<p class="text-gray-400 mb-4">a Laravel-based web application that enables users to report facility damages through an automated workflow system.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 text-xs bg-gray-700 text-gray-300 rounded-full">PHP</span>
<span class="px-3 py-1 text-xs bg-gray-700 text-gray-300 rounded-full">Laravel</span>
<span class="px-3 py-1 text-xs bg-gray-700 text-gray-300 rounded-full">TailwindCSS</span>
</div>
<div class="flex space-x-4">
<a href="https://github.com/User-425/SiLapor" target="_blank"
class="flex items-center text-gray-400 hover:text-gray-300 transition-colors duration-300">
<i data-lucide="github" class="w-4 h-4 mr-2"></i>
Code
</a>
</div>
</div>
</div>
<div
class="project-card group bg-gray-900 rounded-xl overflow-hidden border border-gray-700 hover:border-blue-500/50 transition-all duration-300 hover:transform hover:scale-105">
<div class="aspect-video bg-gray-800 relative overflow-hidden">
<div
class="absolute inset-0 bg-black/20 group-hover:bg-black/10 transition-all duration-300">
</div>
<div class="absolute inset-0 flex items-center justify-center">
<img src="img/JTI_web.png" alt="">
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-3">JTI Web</h3>
<p class="text-gray-400 mb-4">A Laravel PHP web application for a business management system that handles core business operations, using Admin SB 2 template</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 text-xs bg-gray-700 text-gray-300 rounded-full">PHP</span>
<span class="px-3 py-1 text-xs bg-gray-700 text-gray-300 rounded-full">Laravel</span>
<span class="px-3 py-1 text-xs bg-gray-700 text-gray-300 rounded-full">Bootstrap</span>
</div>
<div class="flex space-x-4">
<a href="https://github.com/User-425/JTI-web" target="_blank"
class="flex items-center text-gray-400 hover:text-gray-300 transition-colors duration-300">
<i data-lucide="github" class="w-4 h-4 mr-2"></i>
Code
</a>
</div>
</div>
</div>
<div
class="project-card group bg-gray-900 rounded-xl overflow-hidden border border-gray-700 hover:border-blue-500/50 transition-all duration-300 hover:transform hover:scale-105">
<div class="aspect-video bg-gray-800 relative overflow-hidden">
<div
class="absolute inset-0 bg-black/20 group-hover:bg-black/10 transition-all duration-300">
</div>
<div class="absolute inset-0 flex items-center justify-center">
<img src="img/LaLaGresik.png" alt="">
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-3">LalaGresik</h3>
<p class="text-gray-400 mb-4">My first Laravel PHP web application, around 2022-2023. A simple web app for reporting system. Made from </p><a href="https://github.com/madfarizki/PENGKAT-Pengaduan-Masyarakat">PENGKAT-Pengaduan-Masyarakat</a>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 text-xs bg-gray-700 text-gray-300 rounded-full">PHP</span>
<span class="px-3 py-1 text-xs bg-gray-700 text-gray-300 rounded-full">Laravel</span>
<span class="px-3 py-1 text-xs bg-gray-700 text-gray-300 rounded-full">Bootstrap</span>
</div>
<div class="flex space-x-4">
<a href="https://github.com/User-425/LalaGresik" target="_blank"
class="flex items-center text-gray-400 hover:text-gray-300 transition-colors duration-300">
<i data-lucide="github" class="w-4 h-4 mr-2"></i>
Code
</a>
</div>
</div>
</div>
<div
class="project-card group bg-gray-900 rounded-xl overflow-hidden border border-gray-700 hover:border-blue-500/50 transition-all duration-300 hover:transform hover:scale-105">
<div class="aspect-video bg-gray-800 relative overflow-hidden">
<div
class="absolute inset-0 bg-black/20 group-hover:bg-black/10 transition-all duration-300">
</div>
<div class="absolute inset-0 flex items-center justify-center">
<img src="img/NoriHelper.png" alt="">
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-3">NoriHelper</h3>
<p class="text-gray-400 mb-4">A simple discord bot to extends Nori Bot's functionality</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 text-xs bg-gray-700 text-gray-300 rounded-full">DiscordJS</span>
<span class="px-3 py-1 text-xs bg-gray-700 text-gray-300 rounded-full">JavaScript</span>
</div>
<div class="flex space-x-4">
<a href="https://github.com/User-425/NoriHelper" target="_blank"
class="flex items-center text-gray-400 hover:text-gray-300 transition-colors duration-300">
<i data-lucide="github" class="w-4 h-4 mr-2"></i>
Code
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-900">
<div class="container mx-auto px-6">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-4xl font-bold mb-8 text-blue-400">
Let's Connect
</h2>
<p class="text-xl text-gray-300 mb-12">
Ready to collaborate on innovative projects or discuss opportunities in technology?
</p>
<div class="grid md:grid-cols-3 gap-8 mb-12">
<a href="mailto:anfasarabbany425@gmail.com" target="_blank"
class="group bg-gray-800/50 p-6 rounded-xl border border-gray-700 hover:border-blue-500/50 transition-all duration-300 hover:transform hover:scale-105">
<div
class="w-12 h-12 bg-blue-500/20 rounded-full flex items-center justify-center mx-auto mb-4 group-hover:bg-blue-500/30 transition-colors duration-300">
<i data-lucide="mail" class="w-6 h-6 text-blue-400"></i>
</div>
<h3 class="font-semibold mb-2">Email</h3>
<p class="text-gray-400">anfasarabbany425@gmail.com</p>
</a>
<a href="https://www.linkedin.com/in/achmad-anfasa-rabbany-1a5276208/" target="_blank"
class="group bg-gray-800/50 p-6 rounded-xl border border-gray-700 hover:border-blue-500/50 transition-all duration-300 hover:transform hover:scale-105">
<div
class="w-12 h-12 bg-blue-500/20 rounded-full flex items-center justify-center mx-auto mb-4 group-hover:bg-blue-500/30 transition-colors duration-300">
<i data-lucide="linkedin" class="w-6 h-6 text-blue-400"></i>
</div>
<h3 class="font-semibold mb-2">LinkedIn</h3>
<p class="text-gray-400">Achmad Anfasa Rabbany</p>
</a>
<a href="https://github.com/User-425/" target="_blank"
class="group bg-gray-800/50 p-6 rounded-xl border border-gray-700 hover:border-blue-500/50 transition-all duration-300 hover:transform hover:scale-105">
<div
class="w-12 h-12 bg-blue-500/20 rounded-full flex items-center justify-center mx-auto mb-4 group-hover:bg-blue-500/30 transition-colors duration-300">
<i data-lucide="github" class="w-6 h-6 text-blue-400"></i>
</div>
<h3 class="font-semibold mb-2">GitHub</h3>
<p class="text-gray-400">@User-425</p>
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-8 bg-gray-800 border-t border-gray-700">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="text-gray-400 mb-4 md:mb-0">
© 2025 User_425. All rights reserved.
</div>
<div class="flex space-x-6">
<a href="https://www.linkedin.com/in/achmad-anfasa-rabbany-1a5276208/" target="_blank" class="text-gray-400 hover:text-blue-400 transition-colors duration-300">
<i data-lucide="linkedin" class="w-5 h-5"></i>
</a>
<a href="https://github.com/User-425/" target="_blank" class="text-gray-400 hover:text-blue-400 transition-colors duration-300">
<i data-lucide="github" class="w-5 h-5"></i>
</a>
</div>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>