-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
408 lines (364 loc) · 24.1 KB
/
Copy pathindex.html
File metadata and controls
408 lines (364 loc) · 24.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="google-site-verification" content="BSfLufs8fRwb1Q0XCfsjNeFFQ8Tf7XlVTunOTuOTkQ0" />
<meta name="google-site-verification" content="24Xse_qwSNpLcEGDhJ-WzxYvDneEPJBzC6xutEi0hfo" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Krishna Jain - Software Engineering Student</title>
<link rel="icon" href="https://placehold.co/32x32/1a73e8/ffffff?text=KJ" type="image/x-icon" />
<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@400;500;600;700&display=swap" rel="stylesheet" />
<script src="https://cdn.tailwindcss.com"></script>
<style>
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', sans-serif;
scroll-snap-type: y mandatory;
overflow-y: scroll;
}
body::-webkit-scrollbar {
display: none;
}
body {
-ms-overflow-style: none;
scrollbar-width: none;
}
section {
min-height: calc(100vh - 64px);
display: flex;
flex-direction: column;
justify-content: center;
scroll-snap-align: start;
padding-top: 64px;
padding-bottom: 32px;
}
footer {
scroll-snap-align: end;
}
@media (max-width: 768px) {
section {
min-height: calc(100vh - 50px);
padding-top: 70px;
}
main {
padding-top: 0;
}
}
.loader {
border-top-color: #1a73e8;
animation: spin 1s linear infinite;
}
.prep-results {
white-space: pre-wrap;
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Courier New', monospace;
line-height: 1.6;
min-height: 100px;
display: flex;
align-items: center;
justify-content: center;
color: #6b7280;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800 antialiased">
<!-- Navigation Bar -->
<header class="fixed top-0 left-0 w-full bg-white shadow-sm z-50">
<nav class="container mx-auto px-4 sm:px-6 lg:px-8 py-4 flex items-center justify-between">
<a href="#home" class="text-2xl font-bold text-gray-900 tracking-tight">Krishna Jain</a>
<!-- Wrapper for right side: hamburger + menu -->
<div class="relative flex items-center">
<!-- Hamburger menu button -->
<button id="nav-toggle" aria-label="Toggle navigation menu"
class="sm:hidden focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-opacity-50 z-50">
<svg class="w-6 h-6 text-gray-700" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24">
<path d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
<!-- Nav links -->
<ul id="nav-menu"
class="hidden sm:flex sm:flex-row sm:space-x-6 space-y-2 sm:space-y-0 text-gray-600 font-medium text-sm sm:text-base items-center absolute sm:static right-0 top-full mt-2 sm:mt-0 bg-white sm:bg-transparent w-48 sm:w-auto rounded-md shadow-lg sm:shadow-none z-40">
<li><a href="#skills"
class="block px-4 py-2 hover:text-blue-600 transition duration-300 ease-in-out">Skills</a>
</li>
<li><a href="#projects"
class="block px-4 py-2 hover:text-blue-600 transition duration-300 ease-in-out">Projects</a>
</li>
<li><a href="#education"
class="block px-4 py-2 hover:text-blue-600 transition duration-300 ease-in-out">Education</a>
</li>
<li><a href="#training"
class="block px-4 py-2 hover:text-blue-600 transition duration-300 ease-in-out">Training</a>
</li>
<li><a href="#about"
class="block px-4 py-2 hover:text-blue-600 transition duration-300 ease-in-out">About</a>
</li>
<li>
<a href="./assets/resume/Krishna_Jain_Resume.pdf" download="Krishna Jain - Resume.pdf"
class="block bg-blue-600 text-white px-4 py-2 rounded-md shadow-md hover:bg-blue-700 transition duration-300 ease-in-out transform hover:-translate-y-0.5 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:ring-opacity-50">
Download Resume
</a>
</li>
</ul>
</div>
</nav>
</header>
<main class="">
<!-- Home Section -->
<section id="home" class="container mx-auto px-4 sm:px-6 lg:px-8 py-16 text-center">
<h1 class="text-5xl sm:text-6xl font-extrabold text-gray-900 leading-tight mb-4">Krishna Jain</h1>
<p class="text-xl sm:text-2xl text-gray-600 mb-8">Software Engineering Student with a passion for building scalable applications and solving complex problems.</p>
<div class="flex flex-wrap justify-center gap-x-6 gap-y-3 text-lg text-gray-700">
<a href="mailto:krishnajain.dev@gmail.com" target="_blank"
rel="noopener noreferrer" class="hover:text-blue-600 transition duration-300 ease-in-out">krishnajain.dev@gmail.com</a>
<span class="hidden sm:inline">|</span>
<a href="https://www.linkedin.com/in/krishnajaindev/" target="_blank"
rel="noopener noreferrer" class="hover:text-blue-600 transition duration-300 ease-in-out">LinkedIn</a>
<span class="hidden sm:inline">|</span>
<a href="https://github.com/krishnajaindev" target="_blank"
rel="noopener noreferrer" class="hover:text-blue-600 transition duration-300 ease-in-out">GitHub</a>
</div>
</section>
<!-- Skills Section - Reordered -->
<section id="skills" class="container mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-gray-900 mb-8 pb-4 border-b-2 border-gray-200">Skills</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="skill-category">
<h3 class="text-xl font-semibold text-gray-800 mb-4">Languages</h3>
<ul id="language-list" class="flex flex-wrap gap-3">
<li
class="bg-blue-100 text-blue-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-blue-200 hover:scale-105">
C++</li>
<li
class="bg-blue-100 text-blue-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-blue-200 hover:scale-105">
Python</li>
<li
class="bg-blue-100 text-blue-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-blue-200 hover:scale-105">
JavaScript</li>
<li
class="bg-blue-100 text-blue-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-blue-200 hover:scale-105">
HTML/CSS</li>
<li
class="bg-blue-100 text-blue-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-blue-200 hover:scale-105">
SQL</li>
<li
class="bg-blue-100 text-blue-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-blue-200 hover:scale-105">
TypeScript</li>
</ul>
</div>
<div class="skill-category">
<h3 class="text-xl font-semibold text-gray-800 mb-4">Frameworks & Libraries</h3>
<ul id="frameworks-list" class="flex flex-wrap gap-3">
<li
class="bg-green-100 text-green-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-green-200 hover:scale-105">
React</li>
<li
class="bg-green-100 text-green-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-green-200 hover:scale-105">
Node.js</li>
<li
class="bg-green-100 text-green-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-green-200 hover:scale-105">
Express</li>
<li
class="bg-green-100 text-green-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-green-200 hover:scale-105">
Flask</li>
<li
class="bg-green-100 text-green-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-green-200 hover:scale-105">
Tailwind CSS</li>
<li
class="bg-green-100 text-green-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-green-200 hover:scale-105">
ShadCN</li>
<li
class="bg-green-100 text-green-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-green-200 hover:scale-105">
Zod</li>
<li
class="bg-green-100 text-green-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-green-200 hover:scale-105">
Zustand</li>
<li
class="bg-green-100 text-green-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-green-200 hover:scale-105">
Axios</li>
</ul>
</div>
<div class="skill-category">
<h3 class="text-xl font-semibold text-gray-800 mb-4">Developer Tools & Databases</h3>
<ul id="tools-list" class="flex flex-wrap gap-3">
<li
class="bg-purple-100 text-purple-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-purple-200 hover:scale-105">
Git & GitHub</li>
<li
class="bg-purple-100 text-purple-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-purple-200 hover:scale-105">
VS Code</li>
<li
class="bg-purple-100 text-purple-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-purple-200 hover:scale-105">
PostgreSQL</li>
<li
class="bg-purple-100 text-purple-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-purple-200 hover:scale-105">
MongoDB</li>
<li
class="bg-purple-100 text-purple-800 px-4 py-2 rounded-full font-medium transition duration-300 ease-in-out hover:bg-purple-200 hover:scale-105">
SQLite</li>
</ul>
</div>
</div>
</section>
<!-- Projects Section - Reordered -->
<section id="projects" class="bg-white container mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-gray-900 mb-8 pb-4 border-b-2 border-gray-200">Projects</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Project 1: MERN Music Website -->
<div
class="bg-gray-50 p-6 rounded-lg shadow-md border border-gray-200 flex flex-col transform hover:scale-[1.01] transition duration-300 ease-in-out">
<h3 class="text-2xl font-semibold text-blue-600 mb-3">Full-Stack Music Platform</h3>
<p class="text-gray-700 mb-4 flex-grow">
Developing an enterprise-grade, full-stack web application for music streaming. Features robust
user authentication, dynamic playlist management, and real-time audio playback. Designed with a
focus on scalability to support **thousands of concurrent users** and a seamless user
experience. (In Progress)
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">TypeScript</span>
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">React</span>
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">Tailwind CSS</span>
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">ShadCN</span>
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">Zod</span>
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">Zustand</span>
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">Axios</span>
</div>
<div class="flex space-x-4 mt-auto">
<a href="#" target="_blank" rel="noopener noreferrer" class="text-blue-600 hover:underline font-medium">Live Demo</a>
<a href="#" target="_blank" rel="noopener noreferrer" class="text-blue-600 hover:underline font-medium">Source Code</a>
</div>
</div>
<!-- Project 2: Interactive To-Do List -->
<div
class="bg-gray-50 p-6 rounded-lg shadow-md border border-gray-200 flex flex-col transform hover:scale-[1.01] transition duration-300 ease-in-out">
<h3 class="text-2xl font-semibold text-blue-600 mb-3">Interactive To-Do List</h3>
<p class="text-gray-700 mb-4 flex-grow">
Built a dynamic single-page application to demonstrate core JavaScript proficiency. Features
efficient DOM manipulation, robust event handling, and persistent data storage via local
storage, providing a smooth and intuitive user experience.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">HTML</span>
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">CSS</span>
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">JavaScript</span>
</div>
<div class="flex space-x-4 mt-auto">
<a href="#" target="_blank" rel="noopener noreferrer" class="text-blue-600 hover:underline font-medium">Live Demo</a>
<a href="#" target="_blank" rel="noopener noreferrer" class="text-blue-600 hover:underline font-medium">Source Code</a>
</div>
</div>
<!-- Project 3: Netflix UI Clone -->
<div
class="bg-gray-50 p-6 rounded-lg shadow-md border border-gray-200 flex flex-col transform hover:scale-[1.01] transition duration-300 ease-in-out">
<h3 class="text-2xl font-semibold text-blue-600 mb-3">Netflix UI Clone</h3>
<p class="text-gray-700 mb-4 flex-grow">
Developed a pixel-perfect and fully responsive clone of the Netflix landing page. Focused on
replicating complex UI layouts and ensuring seamless adaptability across diverse screen sizes
(mobile, tablet, desktop) using advanced HTML and Tailwind CSS techniques, demonstrating strong
front-end precision.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">HTML</span>
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">Tailwind CSS</span>
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">JavaScript</span>
</div>
<div class="flex space-x-4 mt-auto">
<a href="https://airbnb-ui-clone-two.vercel.app/ target="_blank" rel="noopener noreferrer" class="text-blue-600 hover:underline font-medium">Live Demo</a>
<a href="https://github.com/krishnajaindev/netflix-ui-clone" target="_blank" rel="noopener noreferrer" class="text-blue-600 hover:underline font-medium">Source Code</a>
</div>
</div>
<!-- Project 4: Airbnb UI Clone -->
<div
class="bg-gray-50 p-6 rounded-lg shadow-md border border-gray-200 flex flex-col transform hover:scale-[1.01] transition duration-300 ease-in-out">
<h3 class="text-2xl font-semibold text-blue-600 mb-3">Airbnb UI Clone</h3>
<p class="text-gray-700 mb-4 flex-grow">
Created a highly responsive clone of the Airbnb front page, showcasing advanced CSS mastery.
Utilized intricate grid and flexbox layouts, coupled with precise media queries, to deliver an
optimal viewing experience across all devices and screen orientations.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">HTML</span>
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">CSS</span>
<span class="bg-gray-200 text-gray-700 text-sm px-3 py-1 rounded-full">JavaScript</span>
</div>
<div class="flex space-x-4 mt-auto">
<a href="https://krishnajain-dev.github.io/airbnb-ui-clone/" target="_blank" rel="noopener noreferrer" class="text-blue-600 hover:underline font-medium">Live Demo</a>
<a href="https://github.com/krishnajaindev/airbnb-ui-clone" target="_blank" rel="noopener noreferrer" class="text-blue-600 hover:underline font-medium">Source Code</a>
</div>
</div>
</div>
</section>
<!-- Education Section - Reordered -->
<section id="education" class="bg-white container mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-gray-900 mb-8 pb-4 border-b-2 border-gray-200">Education</h2>
<article class="bg-gray-50 p-6 rounded-lg shadow-md border border-gray-200">
<h3 class="text-2xl font-semibold text-gray-800 mb-2">Bachelor of Technology, Computer Science &
Engineering</h3>
<p class="text-gray-700 mb-1"><strong>Bhagwan Parshuram Institute of Technology, Delhi</strong></p>
<time class="text-gray-500 text-sm mb-4 block" datetime="2027-05-01">Expected Graduation: May
2027</time>
<p class="text-gray-700"><strong>Overall CGPA:</strong> 8.38 / 10.0</p>
</article>
</section>
<!-- Technical Training Section - Reordered -->
<section id="training" class="container mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-gray-900 mb-8 pb-4 border-b-2 border-gray-200">Technical Training</h2>
<article class="bg-white p-6 rounded-lg shadow-md border border-gray-200">
<h3 class="text-2xl font-semibold text-gray-800 mb-2">Full-Stack Web Development (MERN)</h3>
<p class="text-gray-700 mb-1"><strong>Brain Mentors (College Summer Training)</strong></p>
<time class="text-gray-500 text-sm mb-4 block" datetime="2025-05-01">Summer 2025</time>
<p class="text-gray-700 leading-relaxed">
An intensive, project-based training program focused on building modern, scalable web applications
using the MERN stack. Covered professional development practices, including TypeScript, React,
Node.js, Express, and MongoDB. Gained hands-on experience in RESTful API design, database
integration, state management with Zustand, and responsive UI development with Tailwind CSS.
</p>
</article>
</section>
<!-- About Me Section - Reordered -->
<section id="about" class="bg-white container mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-gray-900 mb-8 pb-4 border-b-2 border-gray-200">About Me</h2>
<p class="text-lg text-gray-700 leading-relaxed">
I'm Krishna Jain, a passionate Computer Science student at Bhagwan Parshuram Institute of Technology,
specializing in building robust and scalable software solutions. I’m currently focused on full-stack
development (MERN), cloud technologies, and data structures & algorithms.
</p>
<p class="text-lg text-gray-700 leading-relaxed mt-4">
I believe in continuous learning through real-world projects and coding challenges. My interests lie in
designing scalable systems and writing clean, efficient code. I aspire to contribute to meaningful
software products at innovative companies like Google.
</p>
<p class="text-lg text-gray-700 leading-relaxed mt-4">
I value consistent effort, collaborative learning, and turning complex ideas into elegant solutions. I'm
always open to new opportunities that challenge my skills and drive impactful growth.
</p>
</section>
</main>
<footer class="bg-gray-800 text-white py-8 text-center">
<div class="container mx-auto px-4 sm:px-6 lg:px-8">
<p>© 2025 Krishna Jain. All rights reserved.</p>
<p class="text-sm text-gray-400 mt-2">Built with passion and modern web technologies.</p>
</div>
</footer>
<script>
// Toggle nav menu on mobile
const navToggle = document.getElementById('nav-toggle');
const navMenu = document.getElementById('nav-menu');
navToggle.addEventListener('click', () => {
navMenu.classList.toggle('hidden');
});
const navLinks = navMenu.querySelectorAll('a');
navLinks.forEach(link => {
link.addEventListener('click', () => {
if (!navMenu.classList.contains('hidden')) {
navMenu.classList.add('hidden');
}
});
});
</script>
</body>
</html>