-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
502 lines (475 loc) · 19.5 KB
/
index.html
File metadata and controls
502 lines (475 loc) · 19.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DSA Atlas</title>
<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=Space+Grotesk:wght@300;400;500;600;700&family=Work+Sans:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/css/customcursor.css" />
<link rel="stylesheet" href="/css/smoothscroll.css" />
<script src="https://cdn.jsdelivr.net/gh/studio-freight/lenis@1.0.22/bundled/lenis.min.js"></script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4256290091752990"
crossorigin="anonymous"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
space: ["Space Grotesk", "sans-serif"],
work: ["Work Sans", "sans-serif"],
},
colors: {
"custom-bg": "#eff7f1",
"custom-green": "#d5f9e5",
"custom-purple": "#6c62ff",
"custom-orange": "#ff5400",
},
},
},
};
</script>
<style>
/* Brutalist hover push effect */
.brutal-card {
transition: all 0.2s ease;
}
.brutal-card:hover {
transform: translate(-0.25rem, -0.25rem);
box-shadow: 0.5rem 0.5rem 0px #000 !important;
}
/* Squiggle underline animation with inline SVG */
.squiggle-underline {
position: relative;
display: inline-block;
text-decoration: underline; /* normal underline by default */
text-decoration-thickness: 2px;
text-underline-offset: 4px; /* spacing below text */
}
.squiggle-underline::after {
content: "";
position: absolute;
bottom: -4px; /* adjust to align with text */
left: 0;
width: 100%;
height: 6px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 6'%3E%3Cpath d='M0,3 Q2.5,0 5,3 T10,3 T15,3 T20,3' stroke='%236c62ff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
background-repeat: repeat-x;
background-size: 20px 6px;
opacity: 0;
transform: translateY(3px);
transition: opacity 0.3s ease, transform 0.3s ease;
pointer-events: none;
}
.squiggle-underline:hover {
text-decoration: none; /* remove normal underline on hover */
}
.squiggle-underline:hover::after {
opacity: 1;
transform: translateY(0);
animation: squiggle-wave 1.5s linear infinite;
}
@keyframes squiggle-wave {
from {
background-position-x: 0;
}
to {
background-position-x: 20px;
}
}
.neo-brutalist {
border: 4px solid #000;
box-shadow: 8px 8px 0 #000;
transition: all 0.2s ease;
border-radius: 4px;
}
.neo-brutalist:hover {
box-shadow: 6px 6px 0 #000;
transform: translate(2px, 2px);
}
@keyframes heartbeat {
0%,
100% {
transform: scale(1);
filter: brightness(1) saturate(1);
opacity: 1;
}
15% {
transform: scale(1.15);
filter: brightness(1.2) saturate(1.3);
opacity: 0.9;
}
25% {
transform: scale(1.05);
filter: brightness(1.1) saturate(1.1);
opacity: 0.95;
}
35% {
transform: scale(1.2);
filter: brightness(1.3) saturate(1.4);
opacity: 0.85;
}
50% {
transform: scale(1);
filter: brightness(1) saturate(1);
opacity: 1;
}
}
.animate-heartbeat {
animation: heartbeat 3.5s ease-in-out infinite;
transform-origin: center;
transition: all 0.3s ease;
}
</style>
</head>
<body class="min-h-screen font-work text-base bg-gray-50">
<!-- Navbar (responsive) -->
<nav
class="max-w-[95%] mx-auto mt-4 px-6 py-4 bg-custom-green border-[0.4rem] border-black rounded-2xl shadow-[0.4rem_0.4rem_0px_#ff5400] flex flex-col md:flex-row items-center justify-between"
>
<div class="flex items-center justify-between w-full md:w-auto">
<h1
class="font-space text-2xl md:text-3xl font-bold text-custom-purple"
>
DSA Atlas
</h1>
<!-- Mobile toggle -->
<div class="md:hidden">
<button
id="nav-toggle"
aria-label="Toggle navigation"
class="neo-brutalist px-3 py-2 border-[0.2rem] border-black bg-white text-black rounded-md"
>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
<!-- Menu: hidden on small, flex on md+ -->
<ul
id="nav-menu"
class="hidden md:flex md:items-center gap-4 font-bold text-lg mt-4 md:mt-0"
>
<li>
<a
href="./pages/companies.html"
class="block w-full text-center md:inline-block md:w-auto neo-brutalist bg-pink-600 text-black text-lg font-bold py-3 px-6 hover:bg-pink-800 transition-none"
>
Companies
</a>
</li>
<li>
<a
href="./pages/ds-algo.html"
class="block w-full text-center md:inline-block md:w-auto neo-brutalist bg-cyan-400 text-black text-lg font-bold py-3 px-6 hover:bg-cyan-600 transition-none"
>
DS & Algo
</a>
</li>
<li>
<a
href="./pages/resources.html"
class="block w-full text-center md:inline-block md:w-auto neo-brutalist bg-lime-400 text-black text-lg font-bold py-3 px-6 hover:bg-lime-600 transition-none"
>
Resources
</a>
</li>
<li>
<a
href="./pages/sheet.html"
class="block w-full text-center md:inline-block md:w-auto neo-brutalist bg-orange-400 text-black text-lg font-bold py-3 px-6 hover:bg-orange-600 transition-none"
>
DSA Sheet
</a>
</li>
<li>
<a
href="./pages/blogs.html"
class="block w-full text-center md:inline-block md:w-auto neo-brutalist bg-purple-400 text-black text-lg font-bold py-3 px-6 hover:bg-purple-600 transition-none"
>
Blogs
</a>
</li>
</ul>
</nav>
<!-- WEBSITE UNDER CONSTRUCTION -->
<!-- <header
class="max-w-[95%] h-[75vh] mx-auto mt-8 bg-custom-bg border-[0.6rem] border-black rounded-3xl p-12 shadow-[0.6rem_0.6rem_0px_#ff5400] flex flex-col justify-center items-center text-center"
>
<h2 class="font-space text-4xl md:text-6xl font-bold mb-6">
Website <span class="text-custom-purple">Under</span> Construction
</h2>
<p class="text-xl md:text-2xl max-w-3xl mx-auto mb-8">
Will be live soon! Meanwhile, explore other sections.
</p>
<a
href="./pages/companies.html"
class="inline-block px-8 py-4 bg-custom-purple text-white rounded-xl font-semibold text-lg border-[0.3rem] border-black shadow-[0.4rem_0.4rem_0px_#222] brutal-card"
>
Just Follow Hither and Dither
</a>
</header> -->
<!-- Hero Section -->
<header
class="max-w-[95%] mx-auto mt-8 text-center bg-custom-bg border-[0.6rem] border-black rounded-3xl p-12 shadow-[0.6rem_0.6rem_0px_#ff5400]"
>
<h2 class="font-space text-4xl md:text-6xl font-bold mb-6">
Master <span class="text-custom-purple">DSA</span> for Interviews
</h2>
<p class="text-xl md:text-2xl max-w-3xl mx-auto mb-8">
Practice Data Structures and Algorithms, revise concepts, and crack
coding interviews with a Neo-Brutalist edge.
</p>
<a
href="./pages/companies.html"
class="inline-block px-8 py-4 bg-custom-purple text-white rounded-xl font-semibold text-lg border-[0.3rem] border-black shadow-[0.4rem_0.4rem_0px_#222] brutal-card"
>
Start Now →
</a>
</header>
<!-- Quick Navigation Grid -->
<section
class="max-w-[95%] mx-auto mt-12 grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6"
>
<a
href="./pages/companies.html"
class="brutal-card bg-custom-green border-[0.4rem] border-black rounded-2xl p-8 shadow-[0.4rem_0.4rem_0px_#222] flex flex-col justify-between"
>
<h3 class="text-2xl font-space font-bold mb-4">Company Problems</h3>
<p>
Filter problems by top tech companies like Google, Amazon, Microsoft.
</p>
</a>
<a
href="./pages/ds-algo.html"
class="brutal-card bg-white border-[0.4rem] border-black rounded-2xl p-8 shadow-[0.4rem_0.4rem_0px_#ff5400] flex flex-col justify-between"
>
<h3 class="text-2xl font-space font-bold mb-4">DS & Algo List</h3>
<p>Structured list of Data Structures and Algorithms with tutorials.</p>
</a>
<a
href="./pages/blogs.html"
class="brutal-card bg-custom-orange border-[0.4rem] border-black rounded-2xl p-8 shadow-[0.4rem_0.4rem_0px_#222] flex flex-col justify-between text-white"
>
<h3 class="text-2xl font-space font-bold mb-4">Blogs</h3>
<p>Guides, revision notes, and interview preparation tips.</p>
</a>
<a
href="./pages/resources.html"
class="brutal-card bg-custom-purple border-[0.4rem] border-black rounded-2xl p-8 shadow-[0.4rem_0.4rem_0px_#222] flex flex-col justify-between text-white"
>
<h3 class="text-2xl font-space font-bold mb-4">Resources</h3>
<p>Bento grid of resources and study materials for DSA prep.</p>
</a>
<a
href="./pages/sheet.html"
class="brutal-card bg-white border-[0.4rem] border-black rounded-2xl p-8 shadow-[0.4rem_0.4rem_0px_#ff5400] flex flex-col justify-between"
>
<h3 class="text-2xl font-space font-bold mb-4">My DSA Sheet</h3>
<p>Track progress with Yes/No tick boxes and save your sheet as PDF.</p>
</a>
</section>
<!-- Footer -->
<footer
class="relative bg-custom-green border-[0.3rem] border-black rounded-2xl mx-auto my-12 p-10 text-center shadow-[0.5rem_0.5rem_0px_#222] max-w-[95%] overflow-hidden"
>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 text-left">
<!-- Branding -->
<div class="space-y-3">
<h3 class="font-space text-2xl font-bold text-black">DSA Atlas</h3>
<p class="text-lg font-semibold text-gray-800">
Made with
<i class="fas fa-heart text-custom-orange animate-heartbeat"></i> by
<a
href="https://srummanf.is-a.dev"
class="squiggle-underline font-bold duration-200 px-2 py-1 rounded bg-custom-purple text-white hover:bg-transparent hover:text-custom-purple hover:-translate-y-[0.1rem] no-underline transition-colors"
target="_blank"
rel="noopener noreferrer"
aria-label="Visit SRF's portfolio website"
>Rumman</a
>
</p>
</div>
<!-- Resource Links -->
<div class="space-y-3">
<h3 class="font-space text-xl font-bold text-black">Resources</h3>
<ul class="space-y-2 text-lg font-medium">
<li>
<a
href="https://github.com/srummanf/Data-Structures-And-Algorithms_SQL-DA-DS_Interview-Practice/tree/main/CS%20Notes%20for%20Interviews%20and%20Placement"
target="_blank"
class="inline-block px-3 py-1 bg-white rounded-md border-[0.2rem] border-black shadow-[0.25rem_0.25rem_0px_#222] hover:bg-custom-purple hover:text-white transition-transform hover:-translate-y-[0.1rem]"
>CS Subject Notes for Placement and Interviews</a
>
</li>
<li>
<a
href="https://github.com/srummanf/Data-Structures-And-Algorithms_SQL-DA-DS_Interview-Practice/tree/main/Aptitude"
target="_blank"
class="inline-block px-3 py-1 bg-white rounded-md border-[0.2rem] border-black shadow-[0.25rem_0.25rem_0px_#222] hover:bg-custom-purple hover:text-white transition-transform hover:-translate-y-[0.1rem]"
>Aptitude</a
>
</li>
<li>
<a
href="https://github.com/srummanf/Data-Structures-And-Algorithms_SQL-DA-DS_Interview-Practice/tree/main/Machine%20Learning%20-%20Deep%20Learning"
target="_blank"
class="inline-block px-3 py-1 bg-white rounded-md border-[0.2rem] border-black shadow-[0.25rem_0.25rem_0px_#222] hover:bg-custom-purple hover:text-white transition-transform hover:-translate-y-[0.1rem]"
>Machine Learning - Deep Learning</a
>
</li>
<li>
<a
href="https://github.com/srummanf/Data-Structures-And-Algorithms_SQL-DA-DS_Interview-Practice/tree/main/SQL"
target="_blank"
class="inline-block px-3 py-1 bg-white rounded-md border-[0.2rem] border-black shadow-[0.25rem_0.25rem_0px_#222] hover:bg-custom-purple hover:text-white transition-transform hover:-translate-y-[0.1rem]"
>SQL</a
>
</li>
<li>
<a
href="https://github.com/srummanf/Data-Structures-And-Algorithms_SQL-DA-DS_Interview-Practice/tree/main/Data%20Analytics%20-%20Data%20Scientist"
target="_blank"
class="inline-block px-3 py-1 bg-white rounded-md border-[0.2rem] border-black shadow-[0.25rem_0.25rem_0px_#222] hover:bg-custom-purple hover:text-white transition-transform hover:-translate-y-[0.1rem]"
>Data Analytics</a
>
</li>
<li>
<a
href="https://github.com/srummanf/Data-Structures-And-Algorithms_SQL-DA-DS_Interview-Practice/tree/main/Interview%20Tips%20and%20Questionnaire"
target="_blank"
class="inline-block px-3 py-1 bg-white rounded-md border-[0.2rem] border-black shadow-[0.25rem_0.25rem_0px_#222] hover:bg-custom-purple hover:text-white transition-transform hover:-translate-y-[0.1rem]"
>Interview Preparation</a
>
</li>
</ul>
</div>
<!-- Contact -->
<div class="space-y-3">
<h3 class="font-space text-xl font-bold text-black">Contact</h3>
<div class="flex flex-wrap gap-3 mt-3">
<a
href="mailto:rummanfardeen4567@gmail.com"
class="flex items-center gap-2 px-3 py-2 bg-white rounded-lg border-[0.2rem] border-black shadow-[0.25rem_0.25rem_0px_#222] hover:bg-custom-purple hover:text-white transition-transform hover:-translate-y-[0.1rem]"
>
<i class="fas fa-envelope"></i> Mail
</a>
<a
href="https://instagram.com/ig.srummanf"
class="flex items-center gap-2 px-3 py-2 bg-white rounded-lg border-[0.2rem] border-black shadow-[0.25rem_0.25rem_0px_#222] hover:bg-custom-purple hover:text-white transition-transform hover:-translate-y-[0.1rem]"
target="_blank"
>
<i class="fab fa-instagram"></i> Instagram
</a>
<a
href="https://linkedin.com/in/srummanf"
class="flex items-center gap-2 px-3 py-2 bg-white rounded-lg border-[0.2rem] border-black shadow-[0.25rem_0.25rem_0px_#222] hover:bg-custom-purple hover:text-white transition-transform hover:-translate-y-[0.1rem]"
target="_blank"
>
<i class="fab fa-linkedin"></i> LinkedIn
</a>
<a
href="https://twitter.com/srummanf"
class="flex items-center gap-2 px-3 py-2 bg-white rounded-lg border-[0.2rem] border-black shadow-[0.25rem_0.25rem_0px_#222] hover:bg-custom-purple hover:text-white transition-transform hover:-translate-y-[0.1rem]"
target="_blank"
>
<i class="fab fa-twitter"></i> Twitter
</a>
<a
href="https://srummanf.is-a.dev"
class="flex items-center gap-2 px-3 py-2 bg-white rounded-lg border-[0.2rem] border-black shadow-[0.25rem_0.25rem_0px_#222] hover:bg-custom-purple hover:text-white transition-transform hover:-translate-y-[0.1rem]"
target="_blank"
>
<i class="fas fa-star"></i> vetrina
</a>
</div>
</div>
</div>
<!-- Bottom Bar -->
<div
class="mt-10 border-t-[0.2rem] border-black pt-4 flex flex-col md:flex-row justify-between items-center text-sm font-semibold px-6"
>
<!-- Left -->
<p class="mb-2 md:mb-0">
© 2025 DSA Atlas - A complete map for interview prep.
</p>
<!-- Right -->
<div class="flex gap-6">
<a
href="./pages/legal/terms.html"
class="hover:text-custom-purple transition-colors"
>
Terms of Service
</a>
<a
href="./pages/legal/mit.html"
class="hover:text-custom-purple transition-colors"
>
License
</a>
<a
href="./pages/legal/privacy.html"
class="hover:text-custom-purple transition-colors"
>
Privacy Policy
</a>
<a
href="https://github.com/srummanf/Data-Structures-And-Algorithms_SQL-DA-DS_Interview-Practice/"
target="_blank"
class="hover:text-custom-purple transition-colors"
>
Source Code
</a>
<a
href="https://github.com/srummanf/Data-Structures-And-Algorithms_SQL-DA-DS_Interview-Practice/blob/main/CONTRIBUTING.md"
target="_blank"
class="hover:text-custom-purple transition-colors"
>
Contribution
</a>
</div>
</div>
</footer>
<script>
// Mobile nav toggle: show/hide menu on small screens
(function () {
const btn = document.getElementById("nav-toggle");
const menu = document.getElementById("nav-menu");
if (!btn || !menu) return;
btn.addEventListener("click", function () {
const isHidden = menu.classList.contains("hidden");
if (isHidden) {
menu.classList.remove("hidden");
menu.classList.add("flex", "flex-col");
} else {
menu.classList.add("hidden");
menu.classList.remove("flex", "flex-col");
}
});
// Keep menu state consistent on resize: hide menu when switching to small
window.addEventListener("resize", function () {
if (window.innerWidth >= 768) {
menu.classList.remove("hidden");
menu.classList.add("flex");
menu.classList.remove("flex-col");
} else {
// default to hidden on mobile
if (!menu.classList.contains("hidden")) {
menu.classList.add("hidden");
menu.classList.remove("flex", "flex-col");
}
}
});
})();
</script>
<script src="./scripts/smoothscroll.js"></script>
</body>
</html>