-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
649 lines (605 loc) · 25.9 KB
/
index.html
File metadata and controls
649 lines (605 loc) · 25.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
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Soumen Pore</title>
<link rel="icon" type="image/jpeg" href="https://i.postimg.cc/9MN00Vrn/Whats-App-Image-2025-03-23-at-12-28-14-174b753f.jpg">
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<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=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
/* Initial state for header animation */
#navbar {
transform: translateY(-100%);
opacity: 0;
}
/* Animation keyframes */
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
/* Animated background for dark mode */
:root[data-theme="dark"] .hero {
background: linear-gradient(45deg, #111827, #1f2937, #111827);
background-size: 200% 200%;
animation: gradientBG 15s ease infinite;
}
/* New animations */
@keyframes slideInLeft {
from {
opacity: 0;
transform: translateX(-50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes rotateIn {
from {
opacity: 0;
transform: rotate(-90deg);
}
to {
opacity: 1;
transform: rotate(0);
}
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-20px);
}
60% {
transform: translateY(-10px);
}
}
/* Shine effect */
@keyframes shine {
0% {
background-position: -100% 0;
}
100% {
background-position: 200% 0;
}
}
/* Counter animation */
.counter-item {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.5s ease, transform 0.5s ease;
}
.counter-item.visible {
opacity: 1;
transform: translateY(0);
}
/* Timeline animations */
.timeline-item {
opacity: 0;
transform: translateX(-30px);
transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-item.visible {
opacity: 1;
transform: translateX(0);
}
/* Education card animations */
.education-card {
opacity: 0;
transform: scale(0.9);
transition: opacity 0.5s ease, transform 0.5s ease;
}
.education-card.visible {
opacity: 1;
transform: scale(1);
}
/* X (Twitter) icon styling */
.x-icon {
position: relative;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
transition: all 0.3s ease;
}
.x-icon::before {
content: "𝕏";
font-family: Arial, sans-serif;
font-size: 1.2rem;
font-weight: bold;
background: linear-gradient(135deg, #fff 20%, #ddd 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
transition: all 0.3s ease;
}
.social-button:hover .x-icon::before {
transform: scale(1.2) rotate(5deg);
text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}
/* Special styling for X social button */
.social-button.x-button {
background: linear-gradient(135deg, #000 0%, #333 100%);
overflow: hidden;
position: relative;
}
.social-button.x-button::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
opacity: 0;
transform: scale(0.5);
transition: transform 0.5s ease, opacity 0.5s ease;
}
.social-button.x-button:hover::before {
opacity: 1;
transform: scale(1);
}
.social-button.x-button:hover {
transform: translateY(-3px) scale(1.05);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
/* Particle animation */
.particle {
position: absolute;
border-radius: 50%;
pointer-events: none;
z-index: -1;
}
</style>
<script>
// Load saved theme with animation
document.addEventListener("DOMContentLoaded", function() {
const savedTheme = localStorage.getItem("theme") || "light";
const html = document.documentElement;
const themeIcon = document.querySelector("#themeToggle i");
// Set theme without animation on initial load
html.setAttribute("data-theme", savedTheme);
themeIcon.className = savedTheme === "dark" ? "fas fa-sun" : "fas fa-moon";
});
</script>
</head>
<body>
<div class="page-transition"></div>
<nav id="navbar">
<div class="nav-content">
<div class="nav-logo-container">
<h1 class="logo">
<img src="https://i.postimg.cc/9MN00Vrn/Whats-App-Image-2025-03-23-at-12-28-14-174b753f.jpg" alt="Soumen Pore" style="height: 40px; width: 40px; border-radius: 50%; vertical-align: middle; margin-right: 10px;">
<span>Soumen</span>
</h1>
<button id="mobileMenuToggle" class="mobile-menu-toggle">
<i class="fas fa-bars"></i>
</button>
</div>
<ul class="nav-links" id="navLinks">
<li><a href="#home" class="nav-link">Home</a></li>
<li><a href="#about" class="nav-link">About</a></li>
<li><a href="#stats" class="nav-link">Stats</a></li>
<li><a href="#projects" class="nav-link">Projects</a></li>
<li><a href="#achievements" class="nav-link">Achievements</a></li>
<li><a href="#education" class="nav-link">Education</a></li>
<li><a href="#contact" class="nav-link">Contact</a></li>
</ul>
</div>
</nav>
<section id="home" class="hero">
<div class="animated-bg"></div>
<div class="hero-content">
<div class="profile-image animate-float">
<img src="https://i.postimg.cc/9MN00Vrn/Whats-App-Image-2025-03-23-at-12-28-14-174b753f.jpg" alt="Soumen Pore">
<div class="profile-border"></div>
</div>
<h1 class="animate-element">Hi, I'm <span class="highlight">Soumen Pore</span></h1>
<p class="subtitle animate-element">Aspiring Developer & Creative Professional</p>
<div class="cta-buttons animate-element">
<a href="#contact" class="cta-button">Get in Touch</a>
<div class="social-links">
<a href="https://github.com/Soumen-dev-ux" target="_blank" class="social-button github-button">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/soumen-pore-3998b1312/" target="_blank" class="social-button linkedin-button">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://www.instagram.com/your_sou_0109/" target="_blank" class="social-button instagram-button">
<i class="fab fa-instagram"></i>
</a>
<a href="https://x.com/SoumenPore62983" target="_blank" class="social-button x-button">
<span class="x-icon"></span>
</a>
</div>
</div>
<div class="scroll-indicator">
<span>Scroll Down</span>
<i class="fas fa-chevron-down"></i>
</div>
</div>
</section>
<section id="about" class="about reveal-section">
<div class="section-header">
<span class="section-tag">About Me</span>
<h2>Who I Am</h2>
<div class="section-line"></div>
</div>
<div class="about-content">
<div class="about-text">
<p>Aspiring developer and creative professional skilled in development, design, and visual arts, blending technical expertise with artistic vision to craft engaging digital experiences.</p>
<div class="skills">
<h3>Technical Skills</h3>
<ul class="skill-list">
<li><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/html5/html5-original.svg" alt="HTML5" title="HTML5" width="40" height="40"></li>
<li><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/css3/css3-original.svg" alt="CSS3" title="CSS3" width="40" height="40"></li>
<li><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/javascript/javascript-original.svg" alt="JavaScript" title="JavaScript" width="40" height="40"></li>
<li><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/java/java-original.svg" alt="Java" title="Java" width="40" height="40"></li>
<li><img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/kotlin/kotlin-original.svg" alt="Kotlin" title="Kotlin" width="40" height="40"></li>
</ul>
<h3>Creative Skills</h3>
<ul class="skill-list">
<li><span>Graphic Design</span></li>
<li><span>Adobe Creative Suite</span></li>
<li><span>Photography</span></li>
<li><span>Team Lead</span></li>
</ul>
</div>
</div>
</div>
</section>
<section id="stats" class="stats reveal-section">
<div class="section-header">
<span class="section-tag">Statistics</span>
<h2>My Journey in Numbers</h2>
<div class="section-line"></div>
</div>
<div class="stats-container">
<div class="counter-item">
<div class="counter-icon">
<i class="fas fa-code"></i>
</div>
<div class="counter-value" data-target="9">0</div>
<div class="counter-label">Projects Completed</div>
</div>
<div class="counter-item">
<div class="counter-icon">
<i class="fas fa-laptop-code"></i>
</div>
<div class="counter-value" data-target="6">0</div>
<div class="counter-label">Hackathons</div>
</div>
<div class="counter-item">
<div class="counter-icon">
<i class="fas fa-trophy"></i>
</div>
<div class="counter-value" data-target="2">0</div>
<div class="counter-label">Awards</div>
</div>
</div>
</section>
<section id="projects" class="projects reveal-section">
<div class="section-header">
<span class="section-tag">Portfolio</span>
<h2>My Projects</h2>
<div class="section-line"></div>
</div>
<div class="project-grid">
<!-- Fresh & Fast Project -->
<div class="project-card">
<div class="project-image">
<img src="https://i.postimg.cc/HL0yvLTM/canteen.png" alt="Fresh & Fast">
</div>
<div class="project-content">
<h3>Fresh & Fast</h3>
<p>A responsive food delivery app with user authentication, real-time order tracking, and a dynamic menu.</p>
<div class="project-tech">
<span>HTML</span>
<span>CSS</span>
<span>JavaScript</span>
</div>
<div class="project-links">
<a href="https://freshandfastgmit.netlify.app/" target="_blank" class="project-link live">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
<a href="https://github.com/Soumen-dev-ux/Canteen_1" target="_blank" class="project-link github">
<i class="fab fa-github"></i> View Code
</a>
</div>
</div>
</div>
<!-- SafeSpace Project -->
<div class="project-card">
<div class="project-image">
<img src="https://i.postimg.cc/qByTBRpy/Screenshot-2025-07-09-223805.png" alt="SafeSpace">
</div>
<div class="project-content">
<h3>SafeSpace</h3>
<p>Protecting students, women, the elderly, and travelers with advanced AI technology that works silently in the background.</p>
<div class="project-tech">
<span>Next.js</span>
<span>React</span>
<span>Tailwind CSS</span>
<span>Radix UI</span>
<span>Supabase</span>
<span>PostgreSQL</span>
<span>PNPM</span>
</div>
<div class="project-links">
<a href="https://safespace-2-0.vercel.app/" target="_blank" class="project-link live">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
<a href="https://github.com/Debraj1001/safespace-2-0" target="_blank" class="project-link github">
<i class="fab fa-github"></i> View Code
</a>
</div>
</div>
</div>
<!-- EduMorph Project -->
<div class="project-card">
<div class="project-image">
<img src="https://i.postimg.cc/VkD1yVmh/Screenshot-2025-07-09-214541.png" alt="Edumorph">
</div>
<div class="project-content">
<h3>Edumorph</h3>
<p>Personalized education powered by artificial intelligence. Learn faster, retain more, and achieve your goals with EduMorph.</p>
<div class="project-tech">
<span>Ongoing</span>
</div>
<div class="project-links">
<a href="https://edu-morph.netlify.app/" target="_blank" class="project-link live">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
<a href="https://github.com/Soumen-dev-ux/EduMorph" target="_blank" class="project-link github">
<i class="fab fa-github"></i> View Code
</a>
</div>
</div>
</div>
<!-- Campus Club Project -->
<div class="project-card">
<div class="project-image">
<img src="https://i.postimg.cc/Gh8kt7Rc/Screenshot-2025-07-20-135101.png" alt="Campus Club">
</div>
<div class="project-content">
<h3>Campus Club</h3>
<p>Campus Club is a centralized platform that showcases all club activities happening across college campuses</p>
<div class="project-tech">
<span>HTML</span>
<span>CSS</span>
<span>JavaScript</span>
</div>
<div class="project-links">
<a href="https://campus-club.netlify.app/" target="_blank" class="project-link live">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
<a href="https://github.com/Soumen-dev-ux/Campus-Club" target="_blank" class="project-link github">
<i class="fab fa-github"></i> View Code
</a>
</div>
</div>
</div>
</div>
</section>
<section id="achievements" class="achievements reveal-section">
<div class="section-header">
<span class="section-tag">Recognition</span>
<h2>Achievements</h2>
<div class="section-line"></div>
</div>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-date">2025</div>
<div class="timeline-content">
<h3>Freshers Talent Award</h3>
<p>Recognized for outstanding contributions to web development and innovative solutions as a freshers participant and Team Leader.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-date">2025</div>
<div class="timeline-content">
<h3>Participant at NameSpace</h3>
<p>Thrilled to have participated in and led a team at my first national online hackathon, *HACKHAZARDS*, hosted by the amazing NameSpace Community—an incredible journey of innovation, teamwork, and growth!</p>
</div>
</div>
</section>
<section id="education" class="education reveal-section">
<div class="section-header">
<span class="section-tag">Learning</span>
<h2>Education</h2>
<div class="section-line"></div>
</div>
<div class="education-container">
<div class="education-card">
<div class="education-icon">
<i class="fas fa-graduation-cap"></i>
</div>
<div class="education-details">
<h3>Ananntapur Siddheswari High School (H.S.)</h3>
<h4>WBCHSE</h4>
<div class="education-year">2022-2024</div>
<p>Higher Secondary</p>
</div>
</div>
<div class="education-card">
<div class="education-icon">
<i class="fas fa-university"></i>
</div>
<div class="education-details">
<h3>Joined Gargi Memorial Institute of Technology</h3>
<h4>JIS, MAKAUT</h4>
<div class="education-year">2024-2028</div>
<p>Bachelor of Technology in Electronics & Communication Engineering</p>
</div>
</div>
</div>
</section>
<section id="contact" class="contact reveal-section">
<div class="section-header">
<span class="section-tag">Reach Out</span>
<h2>Get in Touch</h2>
<div class="section-line"></div>
</div>
<div class="contact-container">
<div class="contact-info">
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-envelope"></i>
</div>
<div class="contact-text">
<h3>Email</h3>
<p>soumenpore7777@gmail.com</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-map-marker-alt"></i>
</div>
<div class="contact-text">
<h3>Location</h3>
<p>West Bengal, India</p>
</div>
</div>
<div class="contact-item">
<div class="contact-icon">
<i class="fas fa-phone"></i>
</div>
<div class="contact-text">
<h3>Phone</h3>
<p>+91 74328 40665</p>
</div>
</div>
</div>
<!-- modify this form HTML and place wherever you want your form -->
<form action="https://formspree.io/f/mjkovjqd"method="POST">
<label>
Your name:
<input type="text" name="name" required>
</label>
<label>
Your email:
<input type="email" name="email">
</label>
<label>
Subject:
<input type="text" name="subject" required>
<label>
Your message:
<textarea name="message"></textarea>
</label>
<!-- your other form fields go here -->
<button type="submit">Send</button>
</form>
</div>
</section>
<button class="theme-toggle" id="themeToggle">
<i class="fas fa-moon"></i>
</button>
<footer>
<div class="footer-content">
<div class="footer-logo">
<h2>Soumen<span>Pore</span></h2>
<p>Aspiring Developer & Creative Professional</p>
</div>
<div class="footer-links">
<h3>Quick Links</h3>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="footer-social">
<h3>Connect With Me</h3>
<div class="social-links">
<a href="https://github.com/Soumen-dev-ux" target="_blank" class="social-button github-button">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/soumen-pore-3998b1312/" target="_blank" class="social-button linkedin-button">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="https://www.instagram.com/your_sou_0109/" target="_blank" class="social-button instagram-button">
<i class="fab fa-instagram"></i>
</a>
<a href="https://x.com/SoumenPore62983" target="_blank" class="social-button x-button">
<span class="x-icon"></span>
</a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Soumen Pore. All rights reserved.</p>
</div>
</footer>
<script type="module" src="/main.js"></script>
</body>
<script>
var form = document.getElementById("my-form");
async function handleSubmit(event) {
event.preventDefault();
var status = document.getElementById("my-form-status");
var data = new FormData(event.target);
fetch(event.target.action, {
method: form.method,
body: data,
headers: {
'Accept': 'application/json'
}
}).then(response => {
if (response.ok) {
status.innerHTML = "Thanks for your submission!";
form.reset()
} else {
response.json().then(data => {
if (Object.hasOwn(data, 'errors')) {
status.innerHTML = data["errors"].map(error => error["message"]).join(", ")
} else {
status.innerHTML = "Oops! There was a problem submitting your form"
}
})
}
}).catch(error => {
status.innerHTML = "Oops! There was a problem submitting your form"
});
}
form.addEventListener("submit", handleSubmit)
</script>
</html>