-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
432 lines (382 loc) · 20.4 KB
/
index.html
File metadata and controls
432 lines (382 loc) · 20.4 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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mohit Sharma | Full Stack Developer</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/gh/devicons/devicon@v2.15.1/devicon.min.css" rel="stylesheet">
<style>
html {
scroll-behavior: smooth;
}
</style>
</head>
<body class="bg-gradient-to-br from-blue-50 via-white to-blue-100 min-h-screen font-sans text-gray-800">
<!-- Navbar -->
<header class="sticky top-0 bg-white shadow-md z-50">
<div class="container mx-auto px-6 py-4 flex justify-between items-center">
<h1 class="text-xl font-bold">Mohit Sharma</h1>
<!-- Hamburger Icon -->
<button id="menu-toggle" class="md:hidden text-2xl">
☰
</button>
<!-- Desktop Menu -->
<nav class="hidden md:flex space-x-6">
<a href="#skills" class="hover:text-blue-600">Skills</a>
<a href="#education" class="hover:text-blue-600">Education</a>
<a href="#projects" class="hover:text-blue-600">Projects</a>
<a href="#contact" class="hover:text-blue-600">Contact</a>
</nav>
</div>
<!-- Mobile Menu -->
<nav id="mobile-menu"
class="fixed top-0 right-0 h-full w-2/3 max-w-xs bg-white shadow-lg transform translate-x-full transition-transform duration-300 ease-in-out md:hidden flex flex-col space-y-6 p-6 z-50">
<a href="#skills" class="hover:text-blue-600">Skills</a>
<a href="#education" class="hover:text-blue-600">Education</a>
<a href="#projects" class="hover:text-blue-600">Projects</a>
<a href="#contact" class="hover:text-blue-600">Contact</a>
</nav>
</header>
<!-- Hero Section -->
<section class="container mx-auto px-6 py-16 text-center" id="home">
<div class="bg-white bg-opacity-60 backdrop-blur-lg p-8 rounded-lg shadow-md inline-block">
<img src="assets/Mohit.png" alt="Mohit Sharma" class="w-32 h-32 mx-auto rounded-full shadow-lg mb-4" />
<h2 class="text-3xl font-bold mb-2">Hi, I'm Mohit Sharma</h2>
<p class="text-lg mb-6 max-w-xl mx-auto">
Full Stack Developer with a passion for building modern, user-friendly web applications using modern full stack
technologies.
</p>
<a href="assets/Mohit_Sharma_resume.pdf" class="bg-blue-600 text-white px-6 py-2 rounded hover:bg-blue-700"
download>
Download Resume
</a>
</div>
</section>
<!-- Skills -->
<section id="skills" class="py-16 bg-white">
<div class="max-w-6xl mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-10">Skills & Technologies</h2>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- Frontend -->
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<i class="devicon-react-original colored text-cyan-500 text-4xl"></i>
<p class="text-lg font-semibold">ReactJS</p>
</div>
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<i class="devicon-javascript-plain colored text-yellow-400 text-4xl"></i>
<p class="text-lg font-semibold">JavaScript</p>
</div>
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<i class="devicon-html5-plain colored text-orange-500 text-4xl"></i>
<p class="text-lg font-semibold">HTML5</p>
</div>
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<i class="devicon-css3-plain colored text-blue-500 text-4xl"></i>
<p class="text-lg font-semibold">CSS3</p>
</div>
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<i class="devicon-tailwindcss-plain colored text-sky-400 text-4xl"></i>
<p class="text-lg font-semibold">Tailwind CSS</p>
</div>
<!-- Backend -->
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<i class="devicon-nodejs-plain colored text-green-600 text-4xl"></i>
<p class="text-lg font-semibold">Node.js</p>
</div>
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<i class="devicon-express-original colored text-gray-700 text-4xl"></i>
<p class="text-lg font-semibold">Express</p>
</div>
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<i class="devicon-mongodb-plain colored text-green-500 text-4xl"></i>
<p class="text-lg font-semibold">MongoDB</p>
</div>
<!-- TypeScript -->
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<i class="devicon-typescript-plain colored text-4xl"></i>
<p class="text-lg font-semibold">TypeScript</p>
</div>
<!-- System Design -->
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<img src="https://cdn-icons-png.flaticon.com/512/6613/6613608.png" alt="System Design Icon" class="w-8 h-8" />
<p class="text-lg font-semibold">System Design</p>
</div>
<!-- OOPs -->
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<img src="https://cdn-icons-png.flaticon.com/512/4329/4329495.png" alt="OOPs Icon" class="w-8 h-8" />
<p class="text-lg font-semibold">OOPs</p>
</div>
<!-- Firebase (fixed icon) -->
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<img src="https://www.vectorlogo.zone/logos/firebase/firebase-icon.svg" alt="Firebase" class="w-8 h-8" />
<p class="text-lg font-semibold">Firebase</p>
</div>
<!-- Java -->
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<i class="devicon-java-plain colored text-red-600 text-4xl"></i>
<p class="text-lg font-semibold">Java</p>
</div>
<!-- Git & GitHub -->
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<i class="devicon-git-plain colored text-orange-600 text-4xl"></i>
<p class="text-lg font-semibold">Git</p>
</div>
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<i class="devicon-github-original colored text-gray-800 text-4xl"></i>
<p class="text-lg font-semibold">GitHub</p>
</div>
<!-- VS Code -->
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<i class="devicon-vscode-plain colored text-indigo-500 text-4xl"></i>
<p class="text-lg font-semibold">VS Code</p>
</div>
<!-- Netlify (confirmed) -->
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/netlify/netlify-plain.svg" alt="Netlify"
class="w-8 h-8 opacity-90" />
<p class="text-lg font-semibold">Netlify</p>
</div>
<!-- Postman -->
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<img src="https://www.vectorlogo.zone/logos/getpostman/getpostman-icon.svg" alt="Postman" class="w-8 h-8" />
<p class="text-lg font-semibold">Postman</p>
</div>
<!-- MySQL (fixed icon) -->
<div
class="bg-gray-50 p-4 rounded-xl shadow transition-transform transform hover:scale-105 hover:shadow-lg flex items-center gap-3">
<img src="https://www.vectorlogo.zone/logos/mysql/mysql-icon.svg" alt="MySQL" class="w-8 h-8" />
<p class="text-lg font-semibold">MySQL</p>
</div>
</div>
</div>
</section>
<!-- Education -->
<section id="education" class="bg-white py-12">
<div class="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-10 text-gray-800">
My <span class="text-[#f75247]">Education</span>
</h2>
<div class="space-y-6">
<!-- Masai School -->
<div
class="bg-white shadow-md rounded-lg p-6 hover:bg-gray-50 hover:shadow-lg hover:scale-[1.01] transition duration-300">
<h3 class="text-xl font-medium text-gray-800">Full-Stack Web Development</h3>
<p class="text-lg font-medium text-blue-500">Masai School</p>
<p class="text-sm text-gray-500 mt-1">Aug 2024 – Present</p>
<p class="text-gray-600 mt-2 text-[15px] leading-relaxed">
A military-style coding bootcamp with a strong focus on Full-Stack Web Development. Covered technologies
such as JavaScript, React, and Node.js, along with data structures and soft skills through hands-on,
practical learning.
</p>
</div>
<!-- Chandigarh University -->
<div
class="bg-white shadow-md rounded-lg p-6 hover:bg-gray-50 hover:shadow-lg hover:scale-[1.01] transition duration-300">
<h3 class="text-xl font-medium text-gray-800">Bachelor of Engineering in Computer Science</h3>
<p class="text-lg font-medium text-blue-500">Chandigarh University</p>
<p class="text-sm text-gray-500 mt-1">2020 – 2024</p>
<p class="text-gray-700 mt-1">CGPA: 6.49</p>
<p class="text-gray-600 mt-2 text-[15px] leading-relaxed">
Gained foundational knowledge in core subjects such as Data Structures, Operating Systems, Database
Management Systems, and Software Engineering, which helped shape my programming fundamentals.
</p>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-16 bg-gray-50">
<div class="max-w-6xl mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-10">Projects</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- Project 1 -->
<div class="bg-white shadow-lg rounded-xl p-6 hover:shadow-2xl transition">
<img src="assets/project1.png" alt="Employee Management System" class="rounded-lg mb-4" />
<h3 class="text-xl font-semibold mb-2">Employee Management System</h3>
<p class="text-gray-700 mb-4">
A role-based task management app with separate dashboards for admins and employees to manage, assign, and
track tasks.
</p>
<div class="flex flex-wrap gap-2 text-sm text-gray-800 mb-4">
<span class="bg-gray-200 px-2 py-1 rounded">React.js</span>
<span class="bg-gray-200 px-2 py-1 rounded">JavaScript</span>
<span class="bg-gray-200 px-2 py-1 rounded">Tailwind CSS</span>
<span class="bg-gray-200 px-2 py-1 rounded">HTML</span>
<span class="bg-gray-200 px-2 py-1 rounded">Local Storage</span>
</div>
<div class="flex gap-4">
<a href="https://github.com/Restymohit/Employee-Managment-System" target="_blank"
class="text-blue-600 underline">GitHub</a>
<a href="https://employee-system-mohit.netlify.app/" target="_blank" class="text-green-600 underline">Live
Demo</a>
</div>
</div>
<!-- Project 5 - Job-Hunt -->
<div class="bg-white shadow-lg rounded-xl p-6 hover:shadow-2xl transition">
<img src="assets/project5.png" alt="Job Hunt MERN App Screenshot" class="rounded-lg mb-4" />
<h3 class="text-xl font-semibold mb-2">Job Hunt - MERN Job Portal</h3>
<p class="text-gray-700 mb-4">
A full-stack job portal allowing users to register as job seekers or recruiters. Features include role-based
dashboards, job posting, application tracking, resume viewing, and an admin panel with user/job management.
</p>
<div class="flex flex-wrap gap-2 text-sm text-gray-800 mb-4">
<span class="bg-gray-200 px-2 py-1 rounded">MongoDB</span>
<span class="bg-gray-200 px-2 py-1 rounded">Express.js</span>
<span class="bg-gray-200 px-2 py-1 rounded">React.js</span>
<span class="bg-gray-200 px-2 py-1 rounded">Node.js</span>
<span class="bg-gray-200 px-2 py-1 rounded">Tailwind CSS</span>
<span class="bg-gray-200 px-2 py-1 rounded">JWT</span>
</div>
<div class="flex gap-4">
<a href="https://github.com/Restymohit/job-hunt" target="_blank" class="text-blue-600 underline">GitHub</a>
<a href="https://job-hunt-gcpq.onrender.com" target="_blank" class="text-green-600 underline">Live
Demo</a>
</div>
</div>
<!-- Project 2 -->
<div class="bg-white shadow-lg rounded-xl p-6 hover:shadow-2xl transition">
<img src="assets/project3.png" alt="Social Collaboration Platform" class="rounded-lg mb-4" />
<h3 class="text-xl font-semibold mb-2">Social Collaboration Platform</h3>
<p class="text-gray-700 mb-4">
A dynamic social platform built for like-minded individuals to connect and collaborate on shared interests
or
projects. Features include post creation, skill tags, comment sections, and an intuitive UI.
</p>
<div class="flex flex-wrap gap-2 text-sm text-gray-800 mb-4">
<span class="bg-gray-200 px-2 py-1 rounded">React.js</span>
<span class="bg-gray-200 px-2 py-1 rounded">Redux</span>
<span class="bg-gray-200 px-2 py-1 rounded">CSS</span>
<span class="bg-gray-200 px-2 py-1 rounded">HTML</span>
<span class="bg-gray-200 px-2 py-1 rounded">Local Storage</span>
</div>
<div class="flex gap-4">
<a href="https://github.com/Dheerajmlk/Social" target="_blank" class="text-blue-600 underline">GitHub</a>
<a href="https://social-mv6s-git-main-dheerajs-projects-662fbfc6.vercel.app/" target="_blank"
class="text-green-600 underline">Live Demo</a>
</div>
</div>
<!-- Project 3
<div class="bg-white shadow-lg rounded-xl p-6 hover:shadow-2xl transition">
<img src="assets/project4.png" alt="Investment Portfolio Tracker" class="rounded-lg mb-4" />
<h3 class="text-xl font-semibold mb-2">Investment Portfolio Tracker</h3>
<p class="text-gray-700 mb-4">
A responsive portfolio tracker to manage assets like stocks and crypto. It features real-time data
visualization and an intuitive dashboard for smarter investment decisions.
</p>
<div class="flex flex-wrap gap-2 text-sm text-gray-800 mb-4">
<span class="bg-gray-200 px-2 py-1 rounded">React.js</span>
<span class="bg-gray-200 px-2 py-1 rounded">Redux</span>
<span class="bg-gray-200 px-2 py-1 rounded">Chart.js</span>
<span class="bg-gray-200 px-2 py-1 rounded">Axios</span>
<span class="bg-gray-200 px-2 py-1 rounded">Tailwind CSS</span>
</div>
<div class="flex gap-4">
<a href="https://github.com/Kartik-0106/Investment-Portfolio-Tracker" target="_blank"
class="text-blue-600 underline">GitHub</a>
<a href="https://portfolio-tracker001.netlify.app/" target="_blank" class="text-green-600 underline">Live
Demo</a>
</div>
</div> -->
<!-- Project 4 -->
<div class="bg-white shadow-lg rounded-xl p-6 hover:shadow-2xl transition">
<img src="assets/project2.png" alt="Sliding Puzzle Game" class="rounded-lg mb-4" />
<h3 class="text-xl font-semibold mb-2">Sliding Puzzle Game</h3>
<p class="text-gray-700 mb-4">
A classic 8-tile sliding puzzle built with React. It includes a timer, dark mode, and shuffle functionality
for a fun interactive experience.
</p>
<div class="flex flex-wrap gap-2 text-sm text-gray-800 mb-4">
<span class="bg-gray-200 px-2 py-1 rounded">React.js</span>
<span class="bg-gray-200 px-2 py-1 rounded">JavaScript</span>
<span class="bg-gray-200 px-2 py-1 rounded">CSS</span>
<span class="bg-gray-200 px-2 py-1 rounded">HTML</span>
<span class="bg-gray-200 px-2 py-1 rounded">Local Storage</span>
</div>
<div class="flex gap-4">
<a href="https://github.com/Restymohit/Slidding-Puzzle-Game" target="_blank"
class="text-blue-600 underline">GitHub</a>
<a href="https://slidding-puzzle-game.vercel.app/" target="_blank" class="text-green-600 underline">Live
Demo</a>
</div>
</div>
</div>
</div>
</section>
<section id="github" class="py-16 bg-white text-center">
<h2 class="text-3xl font-bold mb-6">GitHub Stats</h2>
<div class="flex flex-col items-center space-y-6">
<img src="https://github-readme-stats.vercel.app/api?username=Restymohit&show_icons=true&theme=tokyonight"
alt="Mohit's GitHub stats" />
<img src="https://github-readme-streak-stats.herokuapp.com/?user=Restymohit&theme=tokyonight"
alt="GitHub Streak" />
<img
src="https://github-readme-stats.vercel.app/api/top-langs/?username=Restymohit&layout=compact&theme=tokyonight"
alt="Top Languages" />
</div>
</section>
<!-- Footer -->
<footer class="text-center text-sm text-gray-600 py-6 bg-gray-100">
© 2025 Mohit Sharma. All rights reserved.
</footer>
<!-- Contact Section -->
<section class="bg-gray-100 py-12" id="contact">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl font-bold mb-8">
Connect with <span class="text-[#FF6B6B]">Me</span>
</h2>
<div class="flex justify-center items-center gap-8">
<!-- GitHub -->
<a href="https://github.com/Restymohit" target="_blank">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/github/github-original.svg" alt="GitHub"
class="w-10 h-10 hover:scale-110 transition" />
</a>
<!-- LinkedIn -->
<a href="https://www.linkedin.com/in/mohit-sharma-75435b232/" target="_blank">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/linkedin/linkedin-original.svg" alt="LinkedIn"
class="w-10 h-10 hover:scale-110 transition" />
</a>
<!-- Email -->
<a href="mailto:mohitsharma7724@gmail.com" target="_blank">
<img src="https://img.icons8.com/ios-filled/50/FF0000/new-post.png" alt="Email"
class="w-10 h-10 hover:scale-110 transition" />
</a>
</div>
</div>
</section>
</body>
</html>
<script>
const toggleBtn = document.getElementById("menu-toggle");
const mobileMenu = document.getElementById("mobile-menu");
// Toggle menu on hamburger click
toggleBtn.addEventListener("click", () => {
mobileMenu.classList.toggle("translate-x-full");
mobileMenu.classList.toggle("translate-x-0");
});
// Auto-close menu when any link is clicked
document.querySelectorAll("#mobile-menu a").forEach(link => {
link.addEventListener("click", () => {
mobileMenu.classList.add("translate-x-full");
mobileMenu.classList.remove("translate-x-0");
});
});
</script>