-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
517 lines (500 loc) · 18 KB
/
Copy pathindex.html
File metadata and controls
517 lines (500 loc) · 18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sumeet | Professional Portfolio Generator</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=Inter:wght@400;500;600&family=Playfair+Display:wght@400;600;700;800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- Onboarding Wizard Overlay -->
<div id="builder-overlay" class="builder-overlay">
<div class="builder-card">
<div class="builder-header">
<h2>Professional Portfolio Generator<span>.</span></h2>
<p>Tell us a bit about yourself to generate your premium site.</p>
</div>
<form id="builder-form" class="builder-form" novalidate>
<div class="form-step active" data-step="1">
<h3>Basic Information</h3>
<div class="form-group">
<label>Profile Image</label>
<input type="file" id="profile-image-input" accept="image/*" />
<p class="input-hint">Square images work best.</p>
</div>
<div class="form-group">
<label>Full Name</label>
<input type="text" name="name" placeholder="Sumeet" required />
</div>
<div class="form-group">
<label>Professional Roles (Comma separated)</label>
<input
type="text"
name="roles"
placeholder="Developer, Designer, Innovator"
required
/>
</div>
<button type="button" class="primary-btn next-step">
Next: Key Skills
</button>
</div>
<div class="form-step" data-step="1.5">
<h3>Key Skills & Technologies</h3>
<div class="skills-selector-container">
<!-- Categories and chips will be injected here by JS -->
<div id="skills-selection-root"></div>
</div>
<div class="step-btns">
<button type="button" class="secondary-btn prev-step">
Back
</button>
<button type="button" class="primary-btn next-step">
Next: About & Impact
</button>
</div>
</div>
<div class="form-step" data-step="2">
<h3>About & Impact</h3>
<div class="form-group">
<label>Project Name / Solution</label>
<input
type="text"
name="solutionName"
placeholder="BridgeGap"
required
/>
</div>
<div class="form-group">
<label>Real Life Problem Statement</label>
<textarea
name="problem"
placeholder="Finding quality mentorship is a barrier..."
required
></textarea>
</div>
<div class="form-group">
<label>Proposed Solution Description</label>
<textarea
name="solution"
placeholder="A decentralized platform connecting students..."
required
></textarea>
</div>
<div class="step-btns">
<button type="button" class="secondary-btn prev-step">
Back
</button>
<button type="button" class="primary-btn next-step">
Next: Featured Projects
</button>
</div>
</div>
<div class="form-step" data-step="3">
<h3>Featured Projects</h3>
<div class="project-inputs">
<div class="project-input-group">
<input
type="text"
name="p1_title"
placeholder="Project 1 Title"
required
/>
<textarea
name="p1_desc"
placeholder="Project 1 Description"
required
></textarea>
<input
type="text"
name="p1_tech"
placeholder="HTML, CSS, JS"
required
/>
</div>
<div class="project-input-group">
<input
type="text"
name="p2_title"
placeholder="Project 2 Title"
/>
<textarea
name="p2_desc"
placeholder="Project 2 Description"
></textarea>
<input type="text" name="p2_tech" placeholder="React, Node" />
</div>
<div class="project-input-group">
<input
type="text"
name="p3_title"
placeholder="Project 3 Title"
/>
<textarea
name="p3_desc"
placeholder="Project 3 Description"
></textarea>
<input type="text" name="p3_tech" placeholder="Python, AI" />
</div>
</div>
<div class="step-btns">
<button type="button" class="secondary-btn prev-step">
Back
</button>
<button type="button" class="primary-btn next-step">
Next: Final Touches
</button>
</div>
</div>
<div class="form-step" data-step="4">
<h3>Final Touches</h3>
<div class="form-group">
<label>Professional Bio</label>
<textarea
name="bio"
placeholder="I am a Computer Science student passionate about..."
required
></textarea>
</div>
<div class="form-group">
<label>LinkedIn URL</label>
<input
type="url"
name="linkedin"
placeholder="https://linkedin.com/in/username"
/>
</div>
<div class="form-group">
<label>Twitter URL</label>
<input
type="url"
name="twitter"
placeholder="https://twitter.com/username"
/>
</div>
<div class="form-group">
<label>GitHub URL</label>
<input
type="url"
name="github"
placeholder="https://github.com/username"
/>
</div>
<div class="form-group">
<label>Theme Primary Color</label>
<input type="color" name="primaryColor" value="#38bdf8" />
</div>
<div class="step-btns">
<button type="button" class="secondary-btn prev-step">
Back
</button>
<button type="submit" class="primary-btn">
Generate Portfolio
</button>
</div>
</div>
</form>
</div>
</div>
<div class="custom-cursor"></div>
<!-- Navbar -->
<nav class="navbar">
<div class="nav-container">
<h2 class="logo">
<span id="dynamic-logo-name">Sumeet</span><span>.</span>
</h2>
<div class="menu-btn" id="menuBtn">
<span></span>
<span></span>
<span></span>
</div>
<ul id="navLinks">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#impact">Impact</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="hero-content reveal">
<h1>
<span id="dynamic-hero-name">Sumeet's</span> Digital <br /><span
id="typing-text"
></span>
</h1>
<p>
Computer Science Student & Full-stack Enthusiast focused on building
meaningful solutions for real-world problems.
</p>
<div class="hero-btns">
<button class="primary-btn" onclick="scrollToSection('contact')">
Let's Talk
</button>
<button class="secondary-btn" onclick="scrollToSection('projects')">
View Work
</button>
</div>
</div>
<!-- Cosmic Background -->
<div class="cosmic-bg"></div>
<div class="nebula-accent"></div>
<div class="floating-sat"></div>
</section>
<!-- About -->
<section id="about" class="section">
<div class="container reveal-left">
<h2 class="section-title">About Me</h2>
<div class="about-grid">
<div class="about-image-container">
<div id="dynamic-profile-image" class="profile-frame">
<!-- Profile Image injected here -->
</div>
</div>
<div class="about-text">
<p id="dynamic-bio">
I am a Computer Science student passionate about the intersection
of design and technology. My journey in web development started
with a curiosity for how things work on the internet, and it has
evolved into a drive to build scalable, user-centric applications.
</p>
</div>
</div>
</div>
</section>
<!-- Impact Section -->
<section id="impact" class="section dark">
<div class="container">
<h2 class="section-title reveal">Real-World Impact</h2>
<div class="problem-card">
<div class="problem-content reveal-right">
<div class="problem-header">
<!-- Engineering Icon: Warning/Circuit -->
<span class="icon">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"
></path>
<line x1="12" y1="9" x2="12" y2="13"></line>
<line x1="12" y1="17" x2="12.01" y2="17"></line>
</svg>
</span>
<h3>The Problem</h3>
</div>
<p id="dynamic-problem">
Finding quality mentorship in tech is often a barrier for students
from non-tier-1 cities, leading to a massive talent-opportunity
gap.
</p>
</div>
<div class="solution-content reveal-left">
<div class="problem-header">
<!-- Engineering Icon: Rocket/Launch -->
<span class="icon">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z"
></path>
<path
d="m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z"
></path>
<path d="M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0"></path>
<path d="M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5"></path>
</svg>
</span>
<h3>Proposed Solution</h3>
</div>
<h4 id="dynamic-solution-name">BridgeGap</h4>
<p id="dynamic-solution-desc">
A decentralized platform connecting students with industry mentors
based on shared project interests and skill levels, democratizing
access to professional guidance.
</p>
</div>
</div>
</div>
</section>
<!-- Skills -->
<section id="skills" class="section">
<div class="container reveal">
<h2 class="section-title">Technical Arsenal</h2>
<div class="skills-grid" id="dynamic-skills-grid">
<!-- Skills will be injected here -->
</div>
</div>
</section>
<!-- Projects -->
<section id="projects" class="section dark">
<div class="container reveal">
<h2 class="section-title">Featured Projects</h2>
<div class="filter-btns">
<button class="filter-btn active" data-filter="all">All</button>
<button class="filter-btn" data-filter="web">Web</button>
<button class="filter-btn" data-filter="app">App</button>
<button class="filter-btn" data-filter="ai">AI</button>
</div>
<div class="projects-grid" id="dynamic-projects-grid">
<!-- Projects will be injected here -->
</div>
</div>
</section>
<!-- Testimonials -->
<section class="section">
<div class="container reveal">
<h2 class="section-title">What People Say</h2>
<div class="testimonials-grid">
<div class="testimonial-card">
<p>
"Sumeet's attention to detail in UI/UX is exceptional. He doesn't
just build features; he builds experiences."
</p>
<div class="user-info">
<strong>Alex Rivera</strong>
<span>Project Lead, TechCorp</span>
</div>
</div>
<div class="testimonial-card">
<p>
"The BridgeGap solution is a game-changer for our mentorship
program. Innovative and well-executed."
</p>
<div class="user-info">
<strong>Sarah Jenkins</strong>
<span>Director, EduFoundation</span>
</div>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact" class="section">
<div class="container reveal">
<h2 class="section-title">Get In Touch</h2>
<div class="contact-wrapper">
<form class="contact-form" onsubmit="submitForm(event)">
<div class="form-group">
<label>Name</label>
<input type="text" placeholder="Awarthi" required />
</div>
<div class="form-group">
<label>Email</label>
<input type="email" placeholder="john@example.com" required />
</div>
<div class="form-group">
<label>Message</label>
<textarea placeholder="How can I help you?" required></textarea>
</div>
<button type="submit" class="submit-btn" id="submitBtn">
<span class="btn-text">Send Message</span>
<span class="btn-loader"></span>
</button>
</form>
<div id="msg" class="form-message"></div>
</div>
</div>
</section>
<footer>
<div class="footer-content">
<p>© 2025 Sumeet | Built with passion & precision</p>
<div class="footer-actions">
<button
id="export-json-btn"
class="glass-btn"
onclick="exportToJSON()"
>
Export Data (JSON)
</button>
<button id="export-pdf-btn" class="glass-btn" onclick="exportToPDF()">
Download PDF
</button>
<button id="edit-profile-btn" class="glass-btn">Edit Profile</button>
</div>
<div class="social-links">
<a href="#" id="footer-linkedin" target="_blank">LinkedIn</a>
<a href="#" id="footer-github" target="_blank">GitHub</a>
<a href="#" id="footer-twitter" target="_blank">Twitter</a>
</div>
</div>
<div class="rotating-gear"></div>
</footer>
<!-- AI Chatbot UI -->
<div class="ai-chatbot-container" id="ai-chatbot">
<div class="chatbot-trigger" id="chatbot-trigger">
<div class="robot-avatar">
<div class="robot-head">
<div class="eyes">
<div class="eye"></div>
<div class="eye"></div>
</div>
</div>
<div class="robot-body"></div>
</div>
<span class="trigger-text">AI Assistant</span>
</div>
<div class="chat-window" id="chat-window">
<div class="chat-header">
<div class="bot-info">
<div class="status-dot"></div>
<span>Portfolio AI</span>
</div>
<div class="chat-actions">
<button id="tts-toggle" class="icon-btn" title="Toggle Voice">
<span class="icon">🔊</span>
</button>
<button id="close-chat" class="icon-btn">✕</button>
</div>
</div>
<div class="chat-messages" id="chat-messages">
<div class="message bot">
Hello! I'm your AI assistant. I know everything about this
portfolio. How can I help you today?
</div>
</div>
<div class="chat-input-area">
<div class="input-wrapper">
<input
type="text"
id="chat-input"
placeholder="Type a message..."
autocomplete="off"
/>
<button id="voice-btn" class="icon-btn" title="Speak">
<span class="icon">🎤</span>
</button>
</div>
<button id="send-btn" class="primary-btn">Send</button>
</div>
</div>
</div>
<!-- jsPDF for PDF Export -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
<script src="script.js"></script>
</body>
</html>