-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
580 lines (534 loc) · 30.9 KB
/
Copy pathindex.html
File metadata and controls
580 lines (534 loc) · 30.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dev Namdev | Web App Portfolio</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
:root {
--bg-base: #020617;
/* Slate 950 */
--accent-primary: #0ea5e9;
/* Sky 500 */
--accent-secondary: #8b5cf6;
/* Violet 500 */
}
body {
font-family: 'Outfit', sans-serif;
background-color: var(--bg-base);
color: #f8fafc;
overflow-x: hidden;
position: relative;
}
/* Animated Background Blobs */
.bg-shapes {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
z-index: -1;
overflow: hidden;
background: #020617;
}
.shape {
position: absolute;
filter: blur(100px);
opacity: 0.5;
animation: float 15s ease-in-out infinite alternate;
}
.shape-1 {
top: -10%;
left: -10%;
width: 50vw;
height: 50vw;
background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, rgba(2, 6, 23, 0) 70%);
animation-delay: 0s;
}
.shape-2 {
bottom: -20%;
right: -10%;
width: 60vw;
height: 60vw;
background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(2, 6, 23, 0) 70%);
animation-delay: -5s;
}
.shape-3 {
top: 40%;
left: 40%;
width: 40vw;
height: 40vw;
background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(2, 6, 23, 0) 70%);
animation-delay: -10s;
}
@keyframes float {
0% {
transform: translate(0, 0) scale(1);
}
50% {
transform: translate(30px, -50px) scale(1.1);
}
100% {
transform: translate(-20px, 20px) scale(0.9);
}
}
/* Premium Glass Card */
.glass-card {
background: rgba(15, 23, 42, 0.4);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.08);
border-top: 1px solid rgba(255, 255, 255, 0.15);
border-left: 1px solid rgba(255, 255, 255, 0.15);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.glass-card:hover {
transform: translateY(-8px) scale(1.01);
border-color: rgba(255, 255, 255, 0.2);
}
/* Card Specific Glow Effects */
.card-blue:hover {
box-shadow: 0 25px 50px -12px rgba(14, 165, 233, 0.25);
}
.card-indigo:hover {
box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
}
.card-emerald:hover {
box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25);
}
.card-orange:hover {
box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.25);
}
.card-violet:hover {
box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.25);
}
/* Typography */
.gradient-text {
background: linear-gradient(to right, #38bdf8, #818cf8, #c084fc);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
background-size: 200% auto;
animation: textShine 4s linear infinite;
}
@keyframes textShine {
to {
background-position: 200% center;
}
}
/* Modern Tags & Buttons */
.tag {
font-size: 0.65rem;
text-transform: uppercase;
letter-spacing: 0.05em;
padding: 3px 10px;
border-radius: 9999px;
font-weight: 600;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-launch {
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}
.btn-launch::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: all 0.5s ease;
}
.btn-launch:hover::before {
left: 100%;
}
.btn-launch:hover {
transform: translateY(-2px);
}
/* Icon Container */
.icon-box {
position: relative;
z-index: 1;
}
.icon-box::after {
content: '';
position: absolute;
inset: -5px;
border-radius: inherit;
background: inherit;
filter: blur(15px);
opacity: 0.6;
z-index: -1;
}
</style>
</head>
<body class="min-h-screen selection:bg-sky-500/30 flex flex-col justify-between">
<div class="bg-shapes">
<div class="shape shape-1"></div>
<div class="shape shape-2"></div>
<div class="shape shape-3"></div>
</div>
<nav class="w-full border-b border-white/5 bg-slate-900/50 backdrop-blur-md sticky top-0 z-50">
<div class="max-w-[98vw] w-full mx-auto px-4 sm:px-6 py-4 flex justify-between items-center">
<div class="font-bold text-xl tracking-wider">DEV<span class="text-sky-400">NAMDEV</span></div>
<div class="flex gap-4">
<a href="https://github.com/devnamdev2003" target="_blank"
class="text-slate-400 hover:text-white transition-colors">
<i class="fab fa-github fa-lg"></i>
</a>
</div>
</div>
</nav>
<header class="max-w-4xl mx-auto px-6 pt-16 pb-12 text-center relative z-10">
<div
class="inline-block mb-4 px-4 py-1.5 rounded-full border border-sky-500/30 bg-sky-500/10 text-sky-400 text-sm font-semibold tracking-wide backdrop-blur-sm">
PORTFOLIO 2024
</div>
<h1 class="text-4xl md:text-6xl font-extrabold mb-4 tracking-tight">
My <span class="gradient-text">Web Applications</span>
</h1>
<p class="text-base md:text-lg text-slate-400 max-w-2xl mx-auto font-light leading-relaxed">
A curated collection of tools and platforms built for fitness, productivity, and lifestyle management.
</p>
</header>
<main class="max-w-[98vw] w-full mx-auto px-4 sm:px-6 pb-24 relative z-10 flex-grow">
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 xl:grid-cols-4 2xl:grid-cols-5 gap-4 lg:gap-5">
<div class="glass-card card-blue rounded-2xl p-5 flex flex-col group">
<div class="flex items-start justify-between mb-5">
<div
class="w-11 h-11 rounded-xl bg-gradient-to-br from-sky-400 to-blue-600 flex items-center justify-center text-white icon-box shadow-lg shadow-blue-500/30">
<i class="fas fa-weight fa-md"></i>
</div>
<div class="flex flex-wrap justify-end gap-1 max-w-[65%]">
<span class="tag text-sky-300 border-sky-500/20 bg-sky-500/10">Health</span>
<span class="tag text-sky-300 border-sky-500/20 bg-sky-500/10">Fitness</span>
</div>
</div>
<h3 class="text-xl font-bold mb-2 text-white group-hover:text-sky-400 transition-colors">Weight Tracker
</h3>
<p class="text-slate-400 mb-5 flex-grow leading-relaxed text-sm font-light">
Track your daily weight, monitor progress, and stay fit with ease. Simple, fast, and effective
health tracking designed for your fitness journey.
</p>
<div class="flex items-center justify-between mt-auto pt-3 border-t border-white/10">
<div class="flex -space-x-2">
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-20">
HTML</div>
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-10">
JS</div>
</div>
<a href="https://devnamdev2003.github.io/myapps/w.html" target="_blank" rel="noopener noreferrer"
class="btn-launch px-3.5 py-1.5 bg-white text-slate-900 text-xs font-bold rounded-full hover:bg-sky-50 hover:shadow-lg hover:shadow-sky-500/20 transition-all flex items-center gap-1">
Open App <i class="fas fa-arrow-right text-[10px]"></i>
</a>
</div>
</div>
<div class="glass-card card-indigo rounded-2xl p-5 flex flex-col group">
<div class="flex items-start justify-between mb-5">
<div
class="w-11 h-11 rounded-xl bg-gradient-to-br from-indigo-400 to-purple-600 flex items-center justify-center text-white icon-box shadow-lg shadow-indigo-500/30">
<i class="fas fa-layer-group fa-md"></i>
</div>
<div class="flex flex-wrap justify-end gap-1 max-w-[65%]">
<span class="tag text-indigo-300 border-indigo-500/20 bg-indigo-500/10">Productivity</span>
<span class="tag text-indigo-300 border-indigo-500/20 bg-indigo-500/10">PWA</span>
</div>
</div>
<h3 class="text-xl font-bold mb-2 text-white group-hover:text-indigo-400 transition-colors">TaskFlow
</h3>
<p class="text-slate-400 mb-5 flex-grow leading-relaxed text-sm font-light">
A premium, mobile-first task management application. Features stunning dark glassmorphism design,
consistency heatmaps, and detailed productivity stats.
</p>
<div class="flex items-center justify-between mt-auto pt-3 border-t border-white/10">
<div class="flex -space-x-2">
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-20">
CSS</div>
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-10">
JS</div>
</div>
<a href="https://devnamdev2003.github.io/myapps/taskflow" target="_blank" rel="noopener noreferrer"
class="btn-launch px-3.5 py-1.5 bg-white text-slate-900 text-xs font-bold rounded-full hover:bg-indigo-50 hover:shadow-lg hover:shadow-indigo-500/20 transition-all flex items-center gap-1">
Open App <i class="fas fa-arrow-right text-[10px]"></i>
</a>
</div>
</div>
<div class="glass-card card-emerald rounded-2xl p-5 flex flex-col group">
<div class="flex items-start justify-between mb-5">
<div
class="w-11 h-11 rounded-xl bg-gradient-to-br from-emerald-400 to-teal-600 flex items-center justify-center text-white icon-box shadow-lg shadow-emerald-500/30">
<i class="fas fa-calendar-alt fa-md"></i>
</div>
<div class="flex flex-wrap justify-end gap-1 max-w-[65%]">
<span class="tag text-emerald-300 border-emerald-500/20 bg-emerald-500/10">Fitness</span>
<span class="tag text-emerald-300 border-emerald-500/20 bg-emerald-500/10">Planner</span>
</div>
</div>
<h3 class="text-xl font-bold mb-2 text-white group-hover:text-emerald-400 transition-colors">Workout
Plan</h3>
<p class="text-slate-400 mb-5 flex-grow leading-relaxed text-sm font-light">
Organize your training split and maintain consistency. A visually appealing and powerful way to map
out your weekly fitness routine and smash your goals.
</p>
<div class="flex items-center justify-between mt-auto pt-3 border-t border-white/10">
<div class="flex -space-x-2">
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-20">
UI</div>
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-10">
WEB</div>
</div>
<a href="https://devnamdev2003.github.io/myapps/gym.html" target="_blank" rel="noopener noreferrer"
class="btn-launch px-3.5 py-1.5 bg-white text-slate-900 text-xs font-bold rounded-full hover:bg-emerald-50 hover:shadow-lg hover:shadow-emerald-500/20 transition-all flex items-center gap-1">
Open App <i class="fas fa-arrow-right text-[10px]"></i>
</a>
</div>
</div>
<div class="glass-card card-orange rounded-2xl p-5 flex flex-col group">
<div class="flex items-start justify-between mb-5">
<div
class="w-11 h-11 rounded-xl bg-gradient-to-br from-orange-400 to-red-500 flex items-center justify-center text-white icon-box shadow-lg shadow-orange-500/30">
<i class="fas fa-brain fa-md"></i>
</div>
<div class="flex flex-wrap justify-end gap-1 max-w-[65%]">
<span class="tag text-orange-300 border-orange-500/20 bg-orange-500/10">Wellness</span>
<span class="tag text-orange-300 border-orange-500/20 bg-orange-500/10">Mental Health</span>
</div>
</div>
<h3 class="text-xl font-bold mb-2 text-white group-hover:text-orange-400 transition-colors">Focus &
Balance</h3>
<p class="text-slate-400 mb-5 flex-grow leading-relaxed text-sm font-light">
Monitor your mental clarity and work-life balance. Thoughtfully designed to help you maintain deep
focus and peace during high-intensity periods.
</p>
<div class="flex items-center justify-between mt-auto pt-3 border-t border-white/10">
<div class="flex -space-x-2">
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-20">
ZEN</div>
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-10">
APP</div>
</div>
<a href="https://devnamdev2003.github.io/myapps/f.html" target="_blank" rel="noopener noreferrer"
class="btn-launch px-3.5 py-1.5 bg-white text-slate-900 text-xs font-bold rounded-full hover:bg-orange-50 hover:shadow-lg hover:shadow-orange-500/20 transition-all flex items-center gap-1">
Open App <i class="fas fa-arrow-right text-[10px]"></i>
</a>
</div>
</div>
<div class="glass-card card-violet rounded-2xl p-5 flex flex-col group">
<div class="flex items-start justify-between mb-5">
<div
class="w-11 h-11 rounded-xl bg-gradient-to-br from-violet-400 to-purple-600 flex items-center justify-center text-white icon-box shadow-lg shadow-violet-500/30">
<i class="fas fa-flask fa-md"></i>
</div>
<div class="flex flex-wrap justify-end gap-1 max-w-[65%]">
<span class="tag text-violet-300 border-violet-500/20 bg-violet-500/10">API</span>
<span class="tag text-violet-300 border-violet-500/20 bg-violet-500/10">Developer</span>
</div>
</div>
<h3 class="text-xl font-bold mb-2 text-white group-hover:text-violet-400 transition-colors">API Testing
Tool</h3>
<p class="text-slate-400 mb-5 flex-grow leading-relaxed text-sm font-light">
Test and debug APIs with ease. A powerful developer tool for making HTTP requests, inspecting
responses, and validating API endpoints in real-time.
</p>
<div class="flex items-center justify-between mt-auto pt-3 border-t border-white/10">
<div class="flex -space-x-2">
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-20">
React</div>
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-10">
API</div>
</div>
<a href="https://devnamdev2003.github.io/myapps/api.html" target="_blank" rel="noopener noreferrer"
class="btn-launch px-3.5 py-1.5 bg-white text-slate-900 text-xs font-bold rounded-full hover:bg-violet-50 hover:shadow-lg hover:shadow-violet-500/20 transition-all flex items-center gap-1">
Open App <i class="fas fa-arrow-right text-[10px]"></i>
</a>
</div>
</div>
<div class="glass-card card-blue rounded-2xl p-5 flex flex-col group">
<div class="flex items-start justify-between mb-5">
<div
class="w-11 h-11 rounded-xl bg-gradient-to-br from-blue-400 to-blue-600 flex items-center justify-center text-white icon-box shadow-lg shadow-blue-500/30">
<i class="fas fa-layer-group fa-md"></i>
</div>
<div class="flex flex-wrap justify-end gap-1 max-w-[65%]">
<span class="tag text-blue-300 border-blue-500/20 bg-blue-500/10">Productivity</span>
<span class="tag text-blue-300 border-blue-500/20 bg-blue-500/10">Learning</span>
</div>
</div>
<h3 class="text-xl font-bold mb-2 text-white group-hover:text-blue-400 transition-colors">Milestone</h3>
<p class="text-slate-400 mb-5 flex-grow leading-relaxed text-sm font-light">
Track your learning journey. Manage your workbooks, complete modules, and monitor your progress
step-by-step.
</p>
<div class="flex items-center justify-between mt-auto pt-3 border-t border-white/10">
<div class="flex -space-x-2">
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-20">
DEV</div>
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-10">
APP</div>
</div>
<a href="./milestone/" target="_blank" rel="noopener noreferrer"
class="btn-launch px-3.5 py-1.5 bg-white text-slate-900 text-xs font-bold rounded-full hover:bg-blue-50 hover:shadow-lg hover:shadow-blue-500/20 transition-all flex items-center gap-1">
Open App <i class="fas fa-arrow-right text-[10px]"></i>
</a>
</div>
</div>
<div class="glass-card card-orange rounded-2xl p-5 flex flex-col group">
<div class="flex items-start justify-between mb-5">
<div
class="w-11 h-11 rounded-xl bg-gradient-to-br from-orange-400 to-orange-600 flex items-center justify-center text-white icon-box shadow-lg shadow-orange-500/30">
<i class="fas fa-fire fa-md"></i>
</div>
<div class="flex flex-wrap justify-end gap-1 max-w-[65%]">
<span class="tag text-orange-300 border-orange-500/20 bg-orange-500/10">Habit</span>
<span class="tag text-orange-300 border-orange-500/20 bg-orange-500/10">Consistency</span>
</div>
</div>
<h3 class="text-xl font-bold mb-2 text-white group-hover:text-orange-400 transition-colors">Streak
Tracker</h3>
<p class="text-slate-400 mb-5 flex-grow leading-relaxed text-sm font-light">
Build powerful daily habits. Track your streaks, stay consistent, and never break your momentum with
a clean and simple interface.
</p>
<div class="flex items-center justify-between mt-auto pt-3 border-t border-white/10">
<div class="flex -space-x-2">
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-20">
DEV</div>
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-10">
STREAK</div>
</div>
<a href="https://streakerpro.netlify.app/" target="_blank" rel="noopener noreferrer"
class="btn-launch px-3.5 py-1.5 bg-white text-slate-900 text-xs font-bold rounded-full hover:bg-orange-50 hover:shadow-lg hover:shadow-orange-500/20 transition-all flex items-center gap-1">
Open App <i class="fas fa-arrow-right text-[10px]"></i>
</a>
</div>
</div>
<div class="glass-card card-orange rounded-2xl p-5 flex flex-col group">
<div class="flex items-start justify-between mb-5">
<div
class="w-11 h-11 rounded-xl bg-gradient-to-br from-orange-400 to-orange-600 flex items-center justify-center text-white icon-box shadow-lg shadow-orange-500/30">
<i class="fas fa-play fa-md"></i>
</div>
<div class="flex flex-wrap justify-end gap-1 max-w-[65%]">
<span class="tag text-orange-300 border-orange-500/20 bg-orange-500/10">Video</span>
<span class="tag text-orange-300 border-orange-500/20 bg-orange-500/10">Streaming</span>
</div>
</div>
<h3 class="text-xl font-bold mb-2 text-white group-hover:text-orange-400 transition-colors">Video Player
</h3>
<p class="text-slate-400 mb-5 flex-grow leading-relaxed text-sm font-light">
Watch your videos seamlessly with a fast and lightweight player. Enjoy smooth playback, clean UI,
and easy access to your media anytime.
</p>
<div class="flex items-center justify-between mt-auto pt-3 border-t border-white/10">
<div class="flex -space-x-2">
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-20">
DEV</div>
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-10">
PLAYER</div>
</div>
<a href="./vasync/" target="_blank" rel="noopener noreferrer"
class="btn-launch px-3.5 py-1.5 bg-white text-slate-900 text-xs font-bold rounded-full hover:bg-orange-50 hover:shadow-lg hover:shadow-orange-500/20 transition-all flex items-center gap-1">
Watch Now <i class="fas fa-arrow-right text-[10px]"></i>
</a>
</div>
</div>
<div class="glass-card card-orange rounded-2xl p-5 flex flex-col group">
<div class="flex items-start justify-between mb-5">
<div
class="w-11 h-11 rounded-xl bg-gradient-to-br from-orange-400 to-orange-600 flex items-center justify-center text-white icon-box shadow-lg shadow-orange-500/30">
<i class="fas fa-leaf fa-md"></i>
</div>
<div class="flex flex-wrap justify-end gap-1 max-w-[65%]">
<span class="tag text-orange-300 border-orange-500/20 bg-orange-500/10">Java</span>
<span class="tag text-orange-300 border-orange-500/20 bg-orange-500/10">Spring Boot</span>
</div>
</div>
<h3 class="text-xl font-bold mb-2 text-white group-hover:text-orange-400 transition-colors">Spring Boot
APIs</h3>
<p class="text-slate-400 mb-5 flex-grow leading-relaxed text-sm font-light">
Build scalable and secure backend applications using Spring Boot. Develop REST APIs, integrate
databases, implement authentication, and create microservices.
</p>
<div class="flex items-center justify-between mt-auto pt-3 border-t border-white/10">
<div class="flex -space-x-2">
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-20">
JAVA</div>
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-10">
API</div>
</div>
<a href="./spring-boot/" target="_blank" rel="noopener noreferrer"
class="btn-launch px-3.5 py-1.5 bg-white text-slate-900 text-xs font-bold rounded-full hover:bg-orange-50 hover:shadow-lg hover:shadow-orange-500/20 transition-all flex items-center gap-1">
Explore Now <i class="fas fa-arrow-right text-[10px]"></i>
</a>
</div>
</div>
<div class="glass-card card-orange rounded-2xl p-5 flex flex-col group">
<div class="flex items-start justify-between mb-5">
<div
class="w-11 h-11 rounded-xl bg-gradient-to-br from-orange-400 to-orange-600 flex items-center justify-center text-white icon-box shadow-lg shadow-orange-500/30">
<i class="fas fa-leaf fa-md"></i>
</div>
<div class="flex flex-wrap justify-end gap-1 max-w-[65%]">
<span class="tag text-orange-300 border-orange-500/20 bg-orange-500/10">Java</span>
<span class="tag text-orange-300 border-orange-500/20 bg-orange-500/10">Spring Boot</span>
</div>
</div>
<h3 class="text-xl font-bold mb-2 text-white group-hover:text-orange-400 transition-colors">DSA Flow
</h3>
<p class="text-slate-400 mb-5 flex-grow leading-relaxed text-sm font-light">
Master data structures and algorithms with an optimized learning roadmap. Track complex
problem-solving patterns, optimize algorithmic efficiency, and level up core engineering
fundamentals.
</p>
<div class="flex items-center justify-between mt-auto pt-3 border-t border-white/10">
<div class="flex -space-x-2">
<div
class="w-7 h-7 rounded-full bg-slate-800 flex items-center justify-center text-[8px] font-bold border-2 border-slate-900 text-slate-300 z-20">
JAVA</div>
</div>
<a href="./dsa/" target="_blank" rel="noopener noreferrer"
class="btn-launch px-3.5 py-1.5 bg-white text-slate-900 text-xs font-bold rounded-full hover:bg-orange-50 hover:shadow-lg hover:shadow-orange-500/20 transition-all flex items-center gap-1">
Explore Now <i class="fas fa-arrow-right text-[10px]"></i>
</a>
</div>
</div>
</div>
</main>
<footer class="relative z-10 border-t border-white/10 bg-slate-900/30 backdrop-blur-lg w-full mt-auto">
<div
class="max-w-[98vw] w-full mx-auto px-4 sm:px-6 py-6 flex flex-col md:flex-row justify-between items-center gap-4">
<p class="text-slate-500 text-xs font-medium">© 2024 Dev Namdev. Crafted with precision.</p>
<div class="flex gap-4 text-slate-500">
<a href="#" class="hover:text-sky-400 transition-colors"><i class="fas fa-envelope"></i></a>
<a href="#" class="hover:text-sky-400 transition-colors"><i class="fab fa-twitter"></i></a>
<a href="#" class="hover:text-sky-400 transition-colors"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</footer>
</body>
</html>