File size: 41,534 Bytes
a2b0da7 |
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 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shravan Kumar | Full Stack Developer</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* Custom CSS for animations and effects */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-in {
animation: fadeIn 0.8s ease-out forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.project-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #3b82f6;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.active::after {
width: 100%;
}
</style>
</head>
<body class="bg-gray-50 font-sans antialiased text-gray-800">
<!-- Navigation -->
<nav class="fixed w-full bg-white shadow-sm z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<a href="#home" class="text-xl font-bold gradient-text">SK</a>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#home" class="nav-link active">Home</a>
<a href="#about" class="nav-link">About</a>
<a href="#skills" class="nav-link">Skills</a>
<a href="#projects" class="nav-link">Projects</a>
<a href="#contact" class="nav-link">Contact</a>
</div>
<div class="md:hidden flex items-center">
<button id="menu-btn" class="text-gray-600 hover:text-gray-900">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white py-2 px-4 shadow-lg">
<div class="flex flex-col space-y-3">
<a href="#home" class="nav-link active">Home</a>
<a href="#about" class="nav-link">About</a>
<a href="#skills" class="nav-link">Skills</a>
<a href="#projects" class="nav-link">Projects</a>
<a href="#contact" class="nav-link">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="min-h-screen flex items-center pt-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 fade-in">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-4">
Hi, I'm <span class="gradient-text">Shravan Kumar</span>
</h1>
<h2 class="text-2xl md:text-3xl text-gray-600 mb-6">Full Stack Developer</h2>
<p class="text-lg text-gray-600 mb-8 max-w-lg">
I build exceptional digital experiences with clean, efficient code and modern technologies.
</p>
<div class="flex space-x-4">
<a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">
Contact Me
</a>
<a href="#projects" class="border border-blue-600 text-blue-600 hover:bg-blue-50 px-6 py-3 rounded-lg font-medium transition duration-300">
View Work
</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center fade-in delay-1">
<div class="relative">
<div class="w-64 h-64 md:w-80 md:h-80 bg-gradient-to-br from-blue-400 to-purple-500 rounded-full flex items-center justify-center">
<img src="https://media.licdn.com/dms/image/D5603AQH3ZQ1l1Ql9gA/profile-displayphoto-shrink_400_400/0/1685360513502?e=1721260800&v=beta&t=1Q4Y0QYJQZQZQZQZQZQZQZQZQZQZQZQZQZQZQZQZQ"
alt="Shravan Kumar"
class="w-60 h-60 md:w-72 md:h-72 rounded-full object-cover border-4 border-white">
</div>
<div class="absolute -bottom-5 -right-5 bg-white p-3 rounded-full shadow-lg">
<div class="bg-blue-100 p-3 rounded-full">
<i class="fas fa-code text-blue-600 text-xl"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-16 fade-in">
<span class="gradient-text">About Me</span>
</h2>
<div class="flex flex-col md:flex-row gap-12">
<div class="md:w-1/2 fade-in delay-1">
<h3 class="text-2xl font-semibold mb-4">Who I Am</h3>
<p class="text-gray-600 mb-6">
I'm a passionate Full Stack Developer with expertise in building web applications using modern technologies.
Currently pursuing my Bachelor's degree in Computer Science and Engineering at Vellore Institute of Technology.
</p>
<p class="text-gray-600 mb-6">
With a strong foundation in both front-end and back-end development, I create seamless, user-friendly digital
experiences that solve real-world problems.
</p>
<p class="text-gray-600 mb-8">
When I'm not coding, you can find me exploring new technologies, contributing to open-source projects,
or sharing my knowledge with the developer community.
</p>
<div class="flex flex-wrap gap-4">
<div class="bg-blue-50 px-4 py-2 rounded-lg flex items-center">
<i class="fas fa-graduation-cap text-blue-600 mr-2"></i>
<span>B.Tech CSE</span>
</div>
<div class="bg-purple-50 px-4 py-2 rounded-lg flex items-center">
<i class="fas fa-code-branch text-purple-600 mr-2"></i>
<span>Full Stack</span>
</div>
<div class="bg-green-50 px-4 py-2 rounded-lg flex items-center">
<i class="fas fa-project-diagram text-green-600 mr-2"></i>
<span>10+ Projects</span>
</div>
</div>
</div>
<div class="md:w-1/2 fade-in delay-2">
<h3 class="text-2xl font-semibold mb-6">Experience & Education</h3>
<div class="space-y-8">
<!-- Experience -->
<div class="flex">
<div class="flex flex-col items-center mr-4">
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-briefcase text-blue-600"></i>
</div>
<div class="w-px h-full bg-gray-200"></div>
</div>
<div class="pb-8">
<h4 class="font-semibold">Full Stack Developer</h4>
<p class="text-sm text-gray-500 mb-1">Freelance | 2022 - Present</p>
<p class="text-gray-600">
Developed full-stack applications for clients using React, Node.js, and MongoDB.
Created responsive UIs and implemented RESTful APIs.
</p>
</div>
</div>
<!-- Education -->
<div class="flex">
<div class="flex flex-col items-center mr-4">
<div class="w-10 h-10 bg-purple-100 rounded-full flex items-center justify-center">
<i class="fas fa-university text-purple-600"></i>
</div>
<div class="w-px h-full bg-gray-200"></div>
</div>
<div class="pb-8">
<h4 class="font-semibold">Bachelor of Technology</h4>
<p class="text-sm text-gray-500 mb-1">Vellore Institute of Technology | 2021 - 2025</p>
<p class="text-gray-600">
Computer Science and Engineering with specialization in AI and Machine Learning.
</p>
</div>
</div>
<!-- Education -->
<div class="flex">
<div class="flex flex-col items-center mr-4">
<div class="w-10 h-10 bg-green-100 rounded-full flex items-center justify-center">
<i class="fas fa-school text-green-600"></i>
</div>
</div>
<div>
<h4 class="font-semibold">Higher Secondary</h4>
<p class="text-sm text-gray-500 mb-1">Narayana Junior College | 2019 - 2021</p>
<p class="text-gray-600">
Completed 11th and 12th grade with specialization in Mathematics, Physics, and Chemistry.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-16 fade-in">
<span class="gradient-text">My Skills</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Frontend Skills -->
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 fade-in delay-1">
<div class="flex items-center mb-4">
<div class="bg-blue-100 p-2 rounded-lg mr-4">
<i class="fas fa-laptop-code text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold">Frontend Development</h3>
</div>
<div class="flex flex-wrap gap-3">
<div class="bg-blue-50 px-3 py-1 rounded-full text-sm">HTML5</div>
<div class="bg-blue-50 px-3 py-1 rounded-full text-sm">CSS3</div>
<div class="bg-blue-50 px-3 py-1 rounded-full text-sm">JavaScript</div>
<div class="bg-blue-50 px-3 py-1 rounded-full text-sm">React</div>
<div class="bg-blue-50 px-3 py-1 rounded-full text-sm">Tailwind CSS</div>
<div class="bg-blue-50 px-3 py-1 rounded-full text-sm">Bootstrap</div>
<div class="bg-blue-50 px-3 py-1 rounded-full text-sm">jQuery</div>
</div>
</div>
<!-- Backend Skills -->
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 fade-in delay-2">
<div class="flex items-center mb-4">
<div class="bg-purple-100 p-2 rounded-lg mr-4">
<i class="fas fa-server text-purple-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold">Backend Development</h3>
</div>
<div class="flex flex-wrap gap-3">
<div class="bg-purple-50 px-3 py-1 rounded-full text-sm">Node.js</div>
<div class="bg-purple-50 px-3 py-1 rounded-full text-sm">Express</div>
<div class="bg-purple-50 px-3 py-1 rounded-full text-sm">Python</div>
<div class="bg-purple-50 px-3 py-1 rounded-full text-sm">Django</div>
<div class="bg-purple-50 px-3 py-1 rounded-full text-sm">REST APIs</div>
<div class="bg-purple-50 px-3 py-1 rounded-full text-sm">GraphQL</div>
</div>
</div>
<!-- Database Skills -->
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 fade-in delay-3">
<div class="flex items-center mb-4">
<div class="bg-green-100 p-2 rounded-lg mr-4">
<i class="fas fa-database text-green-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold">Database & Tools</h3>
</div>
<div class="flex flex-wrap gap-3">
<div class="bg-green-50 px-3 py-1 rounded-full text-sm">MongoDB</div>
<div class="bg-green-50 px-3 py-1 rounded-full text-sm">MySQL</div>
<div class="bg-green-50 px-3 py-1 rounded-full text-sm">PostgreSQL</div>
<div class="bg-green-50 px-3 py-1 rounded-full text-sm">Firebase</div>
<div class="bg-green-50 px-3 py-1 rounded-full text-sm">Git</div>
<div class="bg-green-50 px-3 py-1 rounded-full text-sm">Docker</div>
</div>
</div>
<!-- Other Skills -->
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 fade-in delay-1">
<div class="flex items-center mb-4">
<div class="bg-yellow-100 p-2 rounded-lg mr-4">
<i class="fas fa-brain text-yellow-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold">AI/ML</h3>
</div>
<div class="flex flex-wrap gap-3">
<div class="bg-yellow-50 px-3 py-1 rounded-full text-sm">Python</div>
<div class="bg-yellow-50 px-3 py-1 rounded-full text-sm">TensorFlow</div>
<div class="bg-yellow-50 px-3 py-1 rounded-full text-sm">Scikit-learn</div>
<div class="bg-yellow-50 px-3 py-1 rounded-full text-sm">Numpy</div>
<div class="bg-yellow-50 px-3 py-1 rounded-full text-sm">Pandas</div>
</div>
</div>
<!-- Soft Skills -->
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 fade-in delay-2">
<div class="flex items-center mb-4">
<div class="bg-red-100 p-2 rounded-lg mr-4">
<i class="fas fa-users text-red-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold">Soft Skills</h3>
</div>
<div class="flex flex-wrap gap-3">
<div class="bg-red-50 px-3 py-1 rounded-full text-sm">Problem Solving</div>
<div class="bg-red-50 px-3 py-1 rounded-full text-sm">Teamwork</div>
<div class="bg-red-50 px-3 py-1 rounded-full text-sm">Communication</div>
<div class="bg-red-50 px-3 py-1 rounded-full text-sm">Leadership</div>
<div class="bg-red-50 px-3 py-1 rounded-full text-sm">Time Management</div>
</div>
</div>
<!-- Languages -->
<div class="bg-white p-6 rounded-xl shadow-sm hover:shadow-md transition duration-300 fade-in delay-3">
<div class="flex items-center mb-4">
<div class="bg-indigo-100 p-2 rounded-lg mr-4">
<i class="fas fa-language text-indigo-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold">Languages</h3>
</div>
<div class="flex flex-wrap gap-3">
<div class="bg-indigo-50 px-3 py-1 rounded-full text-sm">English (Fluent)</div>
<div class="bg-indigo-50 px-3 py-1 rounded-full text-sm">Hindi (Fluent)</div>
<div class="bg-indigo-50 px-3 py-1 rounded-full text-sm">Telugu (Native)</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-16 fade-in">
<span class="gradient-text">My Projects</span>
</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="project-card bg-gray-50 rounded-xl overflow-hidden transition duration-300 fade-in delay-1">
<div class="h-48 bg-gradient-to-r from-blue-400 to-purple-500 flex items-center justify-center">
<i class="fas fa-shopping-cart text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">E-commerce Platform</h3>
<p class="text-gray-600 mb-4">
A full-featured e-commerce platform with product listings, cart functionality, and secure checkout.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded">React</span>
<span class="text-xs bg-purple-100 text-purple-800 px-2 py-1 rounded">Node.js</span>
<span class="text-xs bg-green-100 text-green-800 px-2 py-1 rounded">MongoDB</span>
</div>
<div class="flex space-x-3">
<a href="#" class="text-blue-600 hover:text-blue-800">
<i class="fab fa-github"></i> Code
</a>
<a href="#" class="text-blue-600 hover:text-blue-800">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="project-card bg-gray-50 rounded-xl overflow-hidden transition duration-300 fade-in delay-2">
<div class="h-48 bg-gradient-to-r from-purple-400 to-pink-500 flex items-center justify-center">
<i class="fas fa-chart-line text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Stock Market Analyzer</h3>
<p class="text-gray-600 mb-4">
Machine learning application that analyzes stock market trends and predicts future prices.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs bg-yellow-100 text-yellow-800 px-2 py-1 rounded">Python</span>
<span class="text-xs bg-red-100 text-red-800 px-2 py-1 rounded">TensorFlow</span>
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded">Flask</span>
</div>
<div class="flex space-x-3">
<a href="#" class="text-blue-600 hover:text-blue-800">
<i class="fab fa-github"></i> Code
</a>
<a href="#" class="text-blue-600 hover:text-blue-800">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="project-card bg-gray-50 rounded-xl overflow-hidden transition duration-300 fade-in delay-3">
<div class="h-48 bg-gradient-to-r from-green-400 to-blue-500 flex items-center justify-center">
<i class="fas fa-blog text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Blog Platform</h3>
<p class="text-gray-600 mb-4">
A modern blog platform with user authentication, rich text editing, and comment functionality.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded">React</span>
<span class="text-xs bg-gray-100 text-gray-800 px-2 py-1 rounded">GraphQL</span>
<span class="text-xs bg-green-100 text-green-800 px-2 py-1 rounded">PostgreSQL</span>
</div>
<div class="flex space-x-3">
<a href="#" class="text-blue-600 hover:text-blue-800">
<i class="fab fa-github"></i> Code
</a>
<a href="#" class="text-blue-600 hover:text-blue-800">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
</div>
</div>
</div>
<!-- Project 4 -->
<div class="project-card bg-gray-50 rounded-xl overflow-hidden transition duration-300 fade-in delay-1">
<div class="h-48 bg-gradient-to-r from-red-400 to-orange-500 flex items-center justify-center">
<i class="fas fa-video text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Video Conferencing App</h3>
<p class="text-gray-600 mb-4">
Real-time video conferencing application with screen sharing and chat functionality.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded">WebRTC</span>
<span class="text-xs bg-purple-100 text-purple-800 px-2 py-1 rounded">Socket.io</span>
<span class="text-xs bg-green-100 text-green-800 px-2 py-1 rounded">Node.js</span>
</div>
<div class="flex space-x-3">
<a href="#" class="text-blue-600 hover:text-blue-800">
<i class="fab fa-github"></i> Code
</a>
<a href="#" class="text-blue-600 hover:text-blue-800">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
</div>
</div>
</div>
<!-- Project 5 -->
<div class="project-card bg-gray-50 rounded-xl overflow-hidden transition duration-300 fade-in delay-2">
<div class="h-48 bg-gradient-to-r from-indigo-400 to-blue-500 flex items-center justify-center">
<i class="fas fa-tasks text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Task Management App</h3>
<p class="text-gray-600 mb-4">
Productivity application for managing tasks with drag-and-drop functionality and team collaboration.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded">React</span>
<span class="text-xs bg-purple-100 text-purple-800 px-2 py-1 rounded">Redux</span>
<span class="text-xs bg-green-100 text-green-800 px-2 py-1 rounded">Firebase</span>
</div>
<div class="flex space-x-3">
<a href="#" class="text-blue-600 hover:text-blue-800">
<i class="fab fa-github"></i> Code
</a>
<a href="#" class="text-blue-600 hover:text-blue-800">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
</div>
</div>
</div>
<!-- Project 6 -->
<div class="project-card bg-gray-50 rounded-xl overflow-hidden transition duration-300 fade-in delay-3">
<div class="h-48 bg-gradient-to-r from-pink-400 to-red-500 flex items-center justify-center">
<i class="fas fa-robot text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">AI Chatbot</h3>
<p class="text-gray-600 mb-4">
Conversational AI chatbot that understands natural language and provides contextual responses.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs bg-yellow-100 text-yellow-800 px-2 py-1 rounded">Python</span>
<span class="text-xs bg-red-100 text-red-800 px-2 py-1 rounded">NLTK</span>
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded">Flask</span>
</div>
<div class="flex space-x-3">
<a href="#" class="text-blue-600 hover:text-blue-800">
<i class="fab fa-github"></i> Code
</a>
<a href="#" class="text-blue-600 hover:text-blue-800">
<i class="fas fa-external-link-alt"></i> Live Demo
</a>
</div>
</div>
</div>
</div>
<div class="text-center mt-12 fade-in delay-4">
<a href="#" class="inline-flex items-center px-6 py-3 border border-blue-600 text-blue-600 hover:bg-blue-50 rounded-lg font-medium transition duration-300">
<i class="fab fa-github mr-2"></i> View All Projects on GitHub
</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 class="text-3xl font-bold text-center mb-16 fade-in">
<span class="gradient-text">Get In Touch</span>
</h2>
<div class="flex flex-col lg:flex-row gap-12">
<div class="lg:w-1/2 fade-in delay-1">
<h3 class="text-2xl font-semibold mb-6">Contact Information</h3>
<p class="text-gray-600 mb-8">
Have a project in mind or want to discuss potential opportunities? Feel free to reach out!
</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-lg mr-4">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<div>
<h4 class="font-medium">Email</h4>
<a href="mailto:shravankumar147@gmail.com" class="text-gray-600 hover:text-blue-600">shravankumar147@gmail.com</a>
</div>
</div>
<div class="flex items-start">
<div class="bg-purple-100 p-3 rounded-lg mr-4">
<i class="fas fa-phone-alt text-purple-600"></i>
</div>
<div>
<h4 class="font-medium">Phone</h4>
<a href="tel:+919876543210" class="text-gray-600 hover:text-blue-600">+91 9876543210</a>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-3 rounded-lg mr-4">
<i class="fas fa-map-marker-alt text-green-600"></i>
</div>
<div>
<h4 class="font-medium">Location</h4>
<p class="text-gray-600">Vellore, Tamil Nadu, India</p>
</div>
</div>
</div>
<div class="mt-10">
<h4 class="font-medium mb-4">Connect with me</h4>
<div class="flex space-x-4">
<a href="https://www.linkedin.com/in/shravankumar147/" target="_blank" class="bg-blue-100 hover:bg-blue-200 w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-linkedin-in text-blue-600"></i>
</a>
<a href="https://github.com/shravankumar147" target="_blank" class="bg-gray-100 hover:bg-gray-200 w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-github text-gray-800"></i>
</a>
<a href="https://twitter.com/shravankumar147" target="_blank" class="bg-blue-100 hover:bg-blue-200 w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-twitter text-blue-400"></i>
</a>
<a href="https://www.instagram.com/shravankumar147/" target="_blank" class="bg-pink-100 hover:bg-pink-200 w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-instagram text-pink-600"></i>
</a>
</div>
</div>
</div>
<div class="lg:w-1/2 fade-in delay-2">
<form class="bg-white p-8 rounded-xl shadow-sm">
<div class="mb-6">
<label for="name" class="block text-gray-700 font-medium mb-2">Name</label>
<input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Your Name">
</div>
<div class="mb-6">
<label for="email" class="block text-gray-700 font-medium mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Your Email">
</div>
<div class="mb-6">
<label for="subject" class="block text-gray-700 font-medium mb-2">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Subject">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Your Message"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<a href="#home" class="text-xl font-bold gradient-text">Shravan Kumar</a>
<p class="text-gray-400 mt-2">Full Stack Developer</p>
</div>
<div class="flex flex-col items-center md:items-end">
<div class="flex space-x-6 mb-4">
<a href="https://www.linkedin.com/in/shravankumar147/" target="_blank" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-linkedin-in text-lg"></i>
</a>
<a href="https://github.com/shravankumar147" target="_blank" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-github text-lg"></i>
</a>
<a href="https://twitter.com/shravankumar147" target="_blank" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-twitter text-lg"></i>
</a>
<a href="https://www.instagram.com/shravankumar147/" target="_blank" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-instagram text-lg"></i>
</a>
</div>
<p class="text-gray-400 text-sm">© 2023 Shravan Kumar. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('menu-btn').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
// Close mobile menu if open
document.getElementById('mobile-menu').classList.add('hidden');
// Scroll to target
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Update active nav link
document.querySelectorAll('.nav-link').forEach(link => {
link.classList.remove('active');
});
this.classList.add('active');
}
});
});
// Update active nav link on scroll
window.addEventListener('scroll', function() {
const sections = document.querySelectorAll('section');
const scrollPosition = window.scrollY + 100;
sections.forEach(section => {
const sectionTop = section.offsetTop;
const sectionHeight = section.offsetHeight;
const sectionId = section.getAttribute('id');
if (scrollPosition >= sectionTop && scrollPosition < sectionTop + sectionHeight) {
document.querySelectorAll('.nav-link').forEach(link => {
link.classList.remove('active');
if (link.getAttribute('href') === `#${sectionId}`) {
link.classList.add('active');
}
});
}
});
});
// Animation on scroll
const fadeElements = document.querySelectorAll('.fade-in');
const fadeObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.opacity = 1;
entry.target.style.transform = 'translateY(0)';
}
});
}, { threshold: 0.1 });
fadeElements.forEach(element => {
element.style.opacity = 0;
element.style.transform = 'translateY(20px)';
element.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
fadeObserver.observe(element);
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=shravankumar147/my-awesome-space" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |