-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
698 lines (675 loc) · 22.2 KB
/
Copy pathindex.html
File metadata and controls
698 lines (675 loc) · 22.2 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
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vasu K | Full Stack Developer | Portfolio</title>
<!-- SEO Meta Tags -->
<meta
name="description"
content="Portfolio of Vasu K, a Full Stack Developer specializing in building exceptional digital experiences with modern web technologies."
/>
<meta
name="keywords"
content="Vasu K, Full Stack Developer, MERN Stack, Web Developer, Portfolio, React, Node.js"
/>
<meta name="author" content="Vasu K" />
<!-- Open Graph / Social Labels -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Vasu K | Full Stack Developer" />
<meta
property="og:description"
content="Explore the portfolio of Vasu K, featuring modern web development projects and digital experiences."
/>
<meta property="og:image" content="./assets/images/og-preview.png" />
<meta property="og:url" content="https://vasu-me.netlify.app/" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Vasu K | Full Stack Developer" />
<meta
name="twitter:description"
content="Explore my latest web development work and skills."
/>
<meta name="twitter:image" content="./assets/images/og-preview.png" />
<!-- Favicon -->
<link rel="icon" type="image/png" href="./assets/favicon.png" />
<link rel="canonical" href="https://vasu-me.netlify.app/" />
<!-- Fonts (preconnect + swap) -->
<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@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap"
rel="stylesheet"
/>
<!-- Critical CSS -->
<link rel="stylesheet" href="./style.css" />
<!-- Deferred CSS: Icons, Swiper, AOS (non-render-blocking) -->
<link
rel="stylesheet"
href="https://unicons.iconscout.com/release/v4.0.8/css/line.css"
media="print"
onload="this.media = 'all'"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.css"
media="print"
onload="this.media = 'all'"
/>
<link
rel="stylesheet"
href="https://unpkg.com/aos@next/dist/aos.css"
media="print"
onload="this.media = 'all'"
/>
<script
src="https://kit.fontawesome.com/118f9e9755.js"
crossorigin="anonymous"
defer
></script>
<!-- Prevent dark-mode flash: runs before CSS paints the page -->
<script>
(function () {
try {
if (localStorage.getItem('theme') === 'dark') {
var s = document.createElement('style');
s.id = 'theme-init';
s.textContent =
'html{background:#0f0f0f}body{background-color:#0f0f0f!important;color:#f9fafb!important}';
document.head.appendChild(s);
}
} catch (e) {}
})();
</script>
</head>
<body>
<!-- Skip to Content (Accessibility) -->
<a class="skip-link" href="#about">Skip to content</a>
<!-- Cursor -->
<div class="cursor-dot" data-cursor-dot aria-hidden="true"></div>
<div class="cursor-outline" data-cursor-outline aria-hidden="true"></div>
<!-- Header / Hero -->
<header class="container">
<div class="hero-content">
<h4 class="hero-subtitle reveal-text">Hello, I'm Vasu</h4>
<h1 class="hero-title reveal-text reveal-delay-1">
Transforming Ideas into <br />
<span
class="highlight typing-text"
aria-live="polite"
aria-atomic="true"
></span
><span class="cursor" aria-hidden="true">|</span>
</h1>
<p class="hero-desc reveal-text reveal-delay-2">
Full Stack Developer specializing in the MERN stack. I build scalable,
high-performance web applications and seamless, user-centric digital
experiences.
</p>
<div class="hero-btns" data-aos="fade-up" data-aos-delay="300">
<a href="#projects" class="btn btn-primary" title="View my projects"
>View Work <i class="uil uil-arrow-right" aria-hidden="true"></i
></a>
<a
href="#contact"
class="btn btn-secondary"
title="Get in touch with me"
>Contact Me</a
>
<a
href="./assets/Sreenivasulu Kalluru.pdf"
class="btn btn-outline"
title="Download my resume"
download
>Download CV <i class="uil uil-file-download" aria-hidden="true"></i
></a>
</div>
<div class="hero-socials" data-aos="fade-up" data-aos-delay="400">
<a
href="https://github.com/Sreenivasulu-Kalluru"
target="_blank"
rel="noopener noreferrer"
class="btn btn-outline sm"
aria-label="GitHub"
><i class="uil uil-github" aria-hidden="true"></i> GitHub</a
>
<a
href="https://linkedin.com/in/vasuk24"
target="_blank"
rel="noopener noreferrer"
class="btn btn-outline sm"
aria-label="LinkedIn"
><i class="uil uil-linkedin" aria-hidden="true"></i> LinkedIn</a
>
</div>
</div>
<div class="scroll-down" aria-hidden="true">
<a
href="#about"
aria-label="Scroll down to About section"
tabindex="-1"
>
<span></span>
<span></span>
<span></span>
</a>
</div>
</header>
<main>
<!-- Bento Grid Section -->
<section id="about" class="container bento-grid">
<!-- About Card (Large) -->
<article
class="card card-lg col-span-8"
data-aos="fade-up"
data-tilt
data-tilt-max="2"
data-tilt-speed="400"
data-tilt-glare
data-tilt-max-glare="0.1"
>
<h3>About Me</h3>
<p>
I am a skilled MERN stack developer with a passion for crafting
intuitive, responsive, and dynamic web applications. Specializing in
front-end development, I combine expertise in React.js with robust
back-end experience in Node.js, Express, and MongoDB.
</p>
<div class="stats-grid">
<div class="stat-item">
<h2 id="project-count-val">20+</h2>
<small>Projects Completed</small>
</div>
<div class="stat-item">
<h2>0+</h2>
<small>Years Experience</small>
</div>
<div class="stat-item" id="visit-count-stat">
<h2 id="visit-count-val"><span class="count-loading">—</span></h2>
<small>Total Visits</small>
</div>
</div>
</article>
<!-- Services / Focus (Side) -->
<article
class="card col-span-4"
data-aos="fade-up"
data-aos-delay="100"
data-tilt
data-tilt-max="5"
data-tilt-speed="400"
data-tilt-glare
data-tilt-max-glare="0.2"
>
<h3>Focus</h3>
<ul class="focus-list">
<li>
<i class="uil uil-desktop" aria-hidden="true"></i> Frontend Dev
</li>
<li>
<i class="uil uil-server" aria-hidden="true"></i> Backend Dev
</li>
<li><i class="uil uil-circuit" aria-hidden="true"></i> DevOps</li>
<li>
<i class="uil uil-window" aria-hidden="true"></i> UI/UX Design
</li>
</ul>
</article>
<!-- Tech Stack (Full Width) -->
<article class="card col-span-12" data-aos="fade-up" id="skills">
<h3>My Tech Stack</h3>
<div class="swiper">
<div class="swiper-wrapper">
<!-- Swiper items from original HTML -->
<div class="swiper-slide">
<img
src="./assets/technologies/html-5.png"
alt="HTML"
width="40"
height="40"
loading="lazy"
/>
<h3>HTML</h3>
</div>
<div class="swiper-slide">
<img
src="./assets/technologies/css.png"
alt="CSS"
width="40"
height="40"
loading="lazy"
/>
<h3>CSS</h3>
</div>
<div class="swiper-slide">
<img
src="./assets/technologies/javascript.png"
alt="JavaScript"
width="40"
height="40"
loading="lazy"
/>
<h3>JavaScript</h3>
</div>
<div class="swiper-slide">
<img
src="./assets/technologies/typescript.png"
alt="TypeScript"
width="40"
height="40"
loading="lazy"
/>
<h3>TypeScript</h3>
</div>
<div class="swiper-slide">
<img
src="./assets/technologies/react.png"
alt="React"
width="40"
height="40"
loading="lazy"
/>
<h3>React</h3>
</div>
<div class="swiper-slide">
<img
src="./assets/technologies/redux.png"
alt="Redux"
width="40"
height="40"
loading="lazy"
/>
<h3>Redux</h3>
</div>
<div class="swiper-slide">
<img
src="./assets/technologies/tailwind-css.png"
alt="Tailwind CSS"
width="40"
height="40"
loading="lazy"
/>
<h3>Tailwind CSS</h3>
</div>
<div class="swiper-slide">
<img
src="./assets/technologies/nextjs-13.svg"
alt="Next.js"
width="40"
height="40"
loading="lazy"
/>
<h3>Next.js</h3>
</div>
<div class="swiper-slide">
<img
src="./assets/technologies/node-js.png"
alt="Node.js"
width="40"
height="40"
loading="lazy"
/>
<h3>Node.js</h3>
</div>
<div class="swiper-slide">
<img
src="./assets/technologies/express.png"
alt="Express.js"
width="40"
height="40"
loading="lazy"
/>
<h3>Express.js</h3>
</div>
<div class="swiper-slide">
<img
src="./assets/technologies/mongodb.png"
alt="MongoDB"
width="40"
height="40"
loading="lazy"
/>
<h3>MongoDB</h3>
</div>
</div>
</div>
</article>
</section>
<!-- Projects Section -->
<section class="container section-projects" id="projects">
<div
class="section-header"
style="
justify-content: center;
border-bottom: none;
margin-bottom: 2rem;
"
>
<h2>Featured Projects</h2>
</div>
<!-- Projects Grid (Injected by JS) -->
<div class="projects__container">
<!-- Rendered via index.js -->
</div>
</section>
<!-- Experience / Education & Contact Section -->
<section class="container bento-grid" style="padding-top: 0">
<!-- Experience / Education -->
<article
class="card col-span-6"
data-aos="fade-up"
id="education"
data-tilt
data-tilt-max="3"
data-tilt-speed="400"
data-tilt-glare
data-tilt-max-glare="0.1"
>
<h3>Education</h3>
<div class="timeline">
<div class="timeline-item">
<h4>Master's Degree - MCA</h4>
<small>SV University | 2024 - 2026</small>
</div>
<div class="timeline-item">
<h4>Bachelor's Degree - BSc</h4>
<small>SBVR Degree College | 2019 - 2022</small>
</div>
<div class="timeline-item">
<h4>Intermediate - MPC</h4>
<small>Sri Chaitanya Jr College | 2017 - 2019</small>
</div>
<div class="timeline-item">
<h4>SSC</h4>
<small>ZPHS Kamalakuru | 2016 - 2017</small>
</div>
</div>
</article>
<!-- Connect / Contact -->
<article
class="card col-span-6"
data-aos="fade-up"
id="contact"
data-tilt
data-tilt-max="3"
data-tilt-speed="400"
data-tilt-glare
data-tilt-max-glare="0.1"
>
<h3>Let's Connect</h3>
<p class="contact-desc" style="margin-bottom: 1.5rem">
Open for freelance opportunities and full-time roles.
</p>
<div
style="
display: flex;
flex-direction: column;
gap: 1rem;
margin-bottom: 2rem;
"
>
<div
style="
background: rgba(16, 185, 129, 0.1);
color: #10b981;
padding: 0.5rem 1rem;
border-radius: var(--radius-sm);
border: 1px solid rgba(16, 185, 129, 0.2);
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-weight: 500;
width: fit-content;
"
>
<span
style="
display: inline-block;
width: 8px;
height: 8px;
background-color: #10b981;
border-radius: 50%;
box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
"
></span>
Available for roles
</div>
<a
href="mailto:vaasuk24@gmail.com"
class="btn btn-outline"
style="justify-content: flex-start"
><i class="uil uil-envelope" aria-hidden="true"></i>
vaasuk24@gmail.com</a
>
<div style="display: flex; gap: 1rem">
<a
href="https://github.com/Sreenivasulu-Kalluru"
target="_blank"
rel="noopener noreferrer"
class="btn btn-outline"
style="flex: 1"
><i class="uil uil-github" aria-hidden="true"></i> GitHub</a
>
<a
href="https://linkedin.com/in/vasuk24"
target="_blank"
rel="noopener noreferrer"
class="btn btn-outline"
style="flex: 1"
><i class="uil uil-linkedin" aria-hidden="true"></i> LinkedIn</a
>
</div>
</div>
<form
action="https://formspree.io/f/xjggevbl"
method="POST"
class="contact-form"
id="contact-form"
>
<div class="form-group">
<label for="contact-name" class="sr-only">Full Name</label>
<input
type="text"
id="contact-name"
name="name"
placeholder="Full Name"
required
autocomplete="name"
/>
<label for="contact-email" class="sr-only">Email Address</label>
<input
type="email"
id="contact-email"
name="email"
placeholder="Email Address"
required
autocomplete="email"
/>
</div>
<div class="form-group">
<label for="contact-phone" class="sr-only">Phone Number</label>
<input
type="tel"
id="contact-phone"
name="phone"
placeholder="Phone Number"
autocomplete="tel"
/>
<label for="contact-subject" class="sr-only">Subject</label>
<input
type="text"
id="contact-subject"
name="subject"
placeholder="Subject"
required
/>
</div>
<label for="contact-message" class="sr-only">Your Message</label>
<textarea
id="contact-message"
name="message"
rows="5"
placeholder="Your Message"
required
></textarea>
<button
type="submit"
class="btn btn-primary full-width"
title="Send your message"
>
Send Message
</button>
</form>
<div
id="form-status"
role="status"
aria-live="polite"
style="margin-top: 1rem; display: none"
></div>
</article>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container footer__container">
<div class="footer__content">
<h3>VASU K.</h3>
<p>
Building digital experiences that matter. <br />
Full Stack Developer based in India.
</p>
</div>
<div class="footer__socials">
<a
href="https://github.com/Sreenivasulu-Kalluru"
target="_blank"
rel="noopener noreferrer"
aria-label="GitHub"
title="GitHub"
>
<i class="uil uil-github" aria-hidden="true"></i>
</a>
<a
href="https://linkedin.com/in/vasuk24"
target="_blank"
rel="noopener noreferrer"
aria-label="LinkedIn"
title="LinkedIn"
>
<i class="uil uil-linkedin" aria-hidden="true"></i>
</a>
<a
href="https://twitter.com/vasuk24"
target="_blank"
rel="noopener noreferrer"
aria-label="X (Twitter)"
title="X (Twitter)"
>
<i class="fa-brands fa-x-twitter" aria-hidden="true"></i>
</a>
</div>
</div>
<div class="footer__bottom">
<p>
© <span id="copyright-year"></span> Vasu K. All rights reserved.
</p>
<p>
Made with
<i class="uil uil-heart text-gradient" aria-hidden="true"></i
><span class="sr-only"> love</span>
</p>
</div>
</footer>
<!-- Back to Top -->
<button class="back-to-top" aria-label="Back to Top" title="Back to Top">
<svg
class="progress-ring"
width="100%"
height="100%"
viewBox="0 0 100 100"
aria-hidden="true"
>
<!-- Progress Indicator -->
<circle
class="progress-ring__circle"
cx="50"
cy="50"
r="48"
fill="transparent"
/>
</svg>
<i class="uil uil-arrow-up" aria-hidden="true"></i>
</button>
<!-- Floating Navigation -->
<nav class="navbar" role="navigation" aria-label="Main navigation">
<a href="#" class="nav__logo">Vasu K.</a>
<div class="nav__menu" id="nav-menu" role="menubar">
<a href="#about" role="menuitem"
><i class="uil uil-user" aria-hidden="true"></i> About</a
>
<a href="#skills" role="menuitem"
><i class="uil uil-brackets-curly" aria-hidden="true"></i> Skills</a
>
<a href="#projects" role="menuitem"
><i class="uil uil-briefcase-alt" aria-hidden="true"></i> Work</a
>
<a href="#contact" role="menuitem"
><i class="uil uil-envelope" aria-hidden="true"></i> Contact</a
>
</div>
<div class="nav__buttons">
<button
class="nav__theme-btn"
aria-label="Toggle Theme"
title="Toggle Theme"
>
<i class="uil uil-moon" aria-hidden="true"></i>
</button>
<button
id="menu-btn"
class="nav__toggle"
aria-label="Toggle Menu"
aria-expanded="false"
aria-controls="nav-menu"
title="Toggle Menu"
>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</button>
</div>
</nav>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/swiper@10/swiper-bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vanilla-tilt/1.7.0/vanilla-tilt.min.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({ duration: 800, offset: 50, easing: 'ease-out-cubic' });
// Initialize Swiper for Bento Grid
const swiper = new Swiper('.swiper', {
slidesPerView: 3,
spaceBetween: 30,
loop: true,
speed: 5000,
autoplay: {
delay: 0,
disableOnInteraction: false,
pauseOnMouseEnter: false,
},
allowTouchMove: false,
loopedSlides: 11,
loopAdditionalSlides: 3,
breakpoints: {
640: { slidesPerView: 4 },
768: { slidesPerView: 5 },
1024: { slidesPerView: 6 },
},
});
</script>
<script src="./data.js"></script>
<script src="./typing.js"></script>
<script src="./index.js"></script>
</body>
</html>