Spaces:
Running
Running
File size: 39,507 Bytes
8d1f914 |
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 724 725 726 727 728 729 730 731 732 733 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Professional Portfolio</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">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#3b82f6',
secondary: '#1d4ed8',
accent: '#10b981'
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.section {
padding: 5rem 0;
}
.skill-bar {
height: 8px;
border-radius: 4px;
}
.card {
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.timeline-item::before {
content: '';
position: absolute;
top: 0;
bottom: 0;
left: 6px;
width: 2px;
background: #3b82f6;
}
.mode-toggle {
cursor: pointer;
transition: all 0.3s ease;
}
.theme-dark {
background-color: #121212;
color: #f3f4f6;
}
.theme-dark .card {
background-color: #1e293b;
}
.theme-dark .text-gray-700 {
color: #d1d5db;
}
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #10b981);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>
</head>
<body class="bg-gray-50 text-gray-800">
<!-- Navigation -->
<nav class="sticky top-0 z-50 bg-white shadow-sm">
<div class="container mx-auto px-4 md:px-6">
<div class="flex justify-between items-center py-4">
<div class="text-xl font-bold text-primary">Portfolio<span class="text-accent">.</span></div>
<div class="hidden md:flex space-x-8">
<a href="#about" class="hover:text-primary transition">About</a>
<a href="#experience" class="hover:text-primary transition">Experience</a>
<a href="#education" class="hover:text-primary transition">Education</a>
<a href="#skills" class="hover:text-primary transition">Skills</a>
<a href="#projects" class="hover:text-primary transition">Projects</a>
<a href="#contact" class="hover:text-primary transition">Contact</a>
</div>
<div class="flex items-center">
<div id="mode-toggle" class="mode-toggle mr-4">
<i class="fas fa-moon"></i>
</div>
<button id="menu-btn" class="md:hidden">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
<div id="mobile-menu" class="hidden py-4 px-4 bg-white shadow-md">
<div class="flex flex-col space-y-3">
<a href="#about" class="hover:text-primary transition">About</a>
<a href="#experience" class="hover:text-primary transition">Experience</a>
<a href="#education" class="hover:text-primary transition">Education</a>
<a href="#skills" class="hover:text-primary transition">Skills</a>
<a href="#projects" class="hover:text-primary transition">Projects</a>
<a href="#contact" class="hover:text-primary transition">Contact</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="section bg-gray-100">
<div class="container mx-auto px-4 md:px-6">
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="md:w-1/2 mb-8 md:mb-0">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-4">Hi, I'm <span class="gradient-text">Alex Morgan</span></h1>
<h2 class="text-2xl md:text-3xl font-semibold text-gray-600 mb-6">Full Stack Developer & UI/UX Designer</h2>
<p class="text-lg mb-8">I create engaging digital experiences with clean, efficient code and intuitive design.</p>
<div class="flex space-x-4">
<a href="#contact" class="bg-primary text-white py-2 px-6 rounded-md font-medium hover:bg-secondary transition">Hire Me</a>
<a href="#" class="border-2 border-primary text-primary py-2 px-6 rounded-md font-medium hover:bg-primary hover:text-white transition">Download CV</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<div class="w-64 h-64 md:w-80 md:h-80 bg-primary rounded-full overflow-hidden border-4 border-white shadow-xl">
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
alt="Alex Morgan" class="w-full h-full object-cover">
</div>
<div class="absolute -bottom-4 right-10 bg-white py-2 px-4 rounded-full flex items-center shadow-lg">
<div class="w-3 h-3 bg-green-500 rounded-full mr-2"></div>
<span class="text-sm font-medium">Available for work</span>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- About Section -->
<section id="about" class="section bg-white">
<div class="container mx-auto px-4 md:px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">About Me</h2>
<div class="w-20 h-1 bg-primary mx-auto"></div>
</div>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<h3 class="text-2xl font-semibold mb-4">Personal Information</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-8">
<div class="flex">
<span class="font-semibold w-32">Name:</span>
<span>Alex Morgan</span>
</div>
<div class="flex">
<span class="font-semibold w-32">Email:</span>
<span>alex.morgan@example.com</span>
</div>
<div class="flex">
<span class="font-semibold w-32">Location:</span>
<span>San Francisco, CA</span>
</div>
<div class="flex">
<span class="font-semibold w-32">Phone:</span>
<span>(415) 555-0123</span>
</div>
<div class="flex">
<span class="font-semibold w-32">Freelance:</span>
<span>Available</span>
</div>
<div class="flex">
<span class="font-semibold w-32">Languages:</span>
<span>English, Spanish</span>
</div>
</div>
<div class="flex space-x-3">
<a href="#" class="w-10 h-10 rounded-full bg-primary text-white flex items-center justify-center hover:bg-secondary transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-primary text-white flex items-center justify-center hover:bg-secondary transition">
<i class="fab fa-github"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-primary text-white flex items-center justify-center hover:bg-secondary transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-primary text-white flex items-center justify-center hover:bg-secondary transition">
<i class="fab fa-dribbble"></i>
</a>
</div>
</div>
<div class="md:w-1/2 pl-0 md:pl-12">
<h3 class="text-2xl font-semibold mb-4">Professional Summary</h3>
<p class="mb-4">I'm a passionate Full Stack Developer with over 5 years of experience creating responsive websites and scalable web applications.</p>
<p class="mb-4">Specializing in JavaScript technologies, I've worked with startups and enterprises to deliver innovative solutions.</p>
<p>My design background brings a unique perspective to development projects, ensuring both functionality and aesthetics are prioritized.</p>
<div class="mt-8 flex justify-start">
<div class="mr-8">
<h4 class="text-2xl font-bold text-primary">25+</h4>
<p>Projects Completed</p>
</div>
<div class="mr-8">
<h4 class="text-2xl font-bold text-primary">12+</h4>
<p>Happy Clients</p>
</div>
<div>
<h4 class="text-2xl font-bold text-primary">5+</h4>
<p>Years Experience</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Experience Section -->
<section id="experience" class="section bg-gray-100">
<div class="container mx-auto px-4 md:px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Work Experience</h2>
<div class="w-20 h-1 bg-primary mx-auto"></div>
</div>
<div class="max-w-3xl mx-auto">
<div class="relative">
<!-- Experience Item -->
<div class="timeline-item pl-8 mb-12 relative">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-primary z-10"></div>
<div class="card bg-white p-6 rounded-md">
<div class="flex justify-between items-start flex-wrap">
<div>
<h3 class="text-xl font-semibold mb-1">Senior Frontend Developer</h3>
<p class="text-lg text-primary font-medium mb-2">TechSolutions Inc.</p>
</div>
<span class="bg-gray-100 px-3 py-1 rounded text-sm">2021 - Present</span>
</div>
<p class="text-gray-600 mb-4">Lead frontend team in developing enterprise SaaS applications with React ecosystem.</p>
<ul class="list-disc pl-5 text-gray-600">
<li>Reduced loading time by 40% through optimization</li>
<li>Implemented CI/CD pipelines for frontend deployment</li>
<li>Mentored junior developers and conducted code reviews</li>
</ul>
</div>
</div>
<!-- Experience Item -->
<div class="timeline-item pl-8 mb-12 relative">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-primary z-10"></div>
<div class="card bg-white p-6 rounded-md">
<div class="flex justify-between items-start flex-wrap">
<div>
<h3 class="text-xl font-semibold mb-1">Full Stack Developer</h3>
<p class="text-lg text-primary font-medium mb-2">Innovate Systems</p>
</div>
<span class="bg-gray-100 px-3 py-1 rounded text-sm">2019 - 2021</span>
</div>
<p class="text-gray-600 mb-4">Developed full-stack applications using React, Node.js and MongoDB.</p>
<ul class="list-disc pl-5 text-gray-600">
<li>Created RESTful API endpoints with Node.js</li>
<li>Built responsive UI components with React and CSS modules</li>
<li>Integrated payment systems and authentication modules</li>
</ul>
</div>
</div>
<!-- Experience Item -->
<div class="timeline-item pl-8 relative">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-primary z-10"></div>
<div class="card bg-white p-6 rounded-md">
<div class="flex justify-between items-start flex-wrap">
<div>
<h3 class="text-xl font-semibold mb-1">Frontend Developer</h3>
<p class="text-lg text-primary font-medium mb-2">Digital Creations</p>
</div>
<span class="bg-gray-100 px-3 py-1 rounded text-sm">2018 - 2019</span>
</div>
<p class="text-gray-600 mb-4">Created responsive websites and landing pages for various clients.</p>
<ul class="list-disc pl-5 text-gray-600">
<li>Converted design mockups to responsive HTML/CSS</li>
<li>Implemented interactive features with JavaScript</li>
<li>Optimized websites for speed and SEO</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Education Section -->
<section id="education" class="section bg-white">
<div class="container mx-auto px-4 md:px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Education</h2>
<div class="w-20 h-1 bg-primary mx-auto"></div>
</div>
<div class="max-w-3xl mx-auto">
<div class="relative">
<!-- Education Item -->
<div class="timeline-item pl-8 mb-12 relative">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-primary z-10"></div>
<div class="card bg-gray-50 p-6 rounded-md">
<div class="flex justify-between items-start flex-wrap">
<div>
<h3 class="text-xl font-semibold mb-1">Master of Computer Science</h3>
<p class="text-lg text-primary font-medium mb-2">Stanford University</p>
</div>
<span class="bg-gray-100 px-3 py-1 rounded text-sm">2016 - 2018</span>
</div>
<p class="text-gray-600 mb-4">Specialized in Artificial Intelligence and Human-Computer Interaction.</p>
<p class="text-gray-600">GPA: 3.9/4.0</p>
</div>
</div>
<!-- Education Item -->
<div class="timeline-item pl-8 mb-12 relative">
<div class="absolute left-0 top-0 w-4 h-4 rounded-full bg-primary z-10"></div>
<div class="card bg-gray-50 p-6 rounded-md">
<div class="flex justify-between items-start flex-wrap">
<div>
<h3 class="text-xl font-semibold mb-1">Bachelor of Science in Software Engineering</h3>
<p class="text-lg text-primary font-medium mb-2">UC Berkeley</p>
</div>
<span class="bg-gray-100 px-3 py-1 rounded text-sm">2012 - 2016</span>
</div>
<p class="text-gray-600 mb-4">Focus on web technologies and software development lifecycle.</p>
<p class="text-gray-600">GPA: 3.7/4.0</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="section bg-gray-100">
<div class="container mx-auto px-4 md:px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Technical Skills</h2>
<div class="w-20 h-1 bg-primary mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
<!-- Technical Skills -->
<div>
<h3 class="text-xl font-semibold mb-6">Technical Skills</h3>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>React & Next.js</span>
<span>95%</span>
</div>
<div class="skill-bar bg-gray-200 rounded overflow-hidden">
<div class="bg-primary h-full" style="width: 95%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>JavaScript / TypeScript</span>
<span>92%</span>
</div>
<div class="skill-bar bg-gray-200 rounded overflow-hidden">
<div class="bg-primary h-full" style="width: 92%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>Node.js & Express</span>
<span>88%</span>
</div>
<div class="skill-bar bg-gray-200 rounded overflow-hidden">
<div class="bg-primary h-full" style="width: 88%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>HTML5 & CSS3</span>
<span>90%</span>
</div>
<div class="skill-bar bg-gray-200 rounded overflow-hidden">
<div class="bg-primary h-full" style="width: 90%"></div>
</div>
</div>
</div>
<!-- Tools & Languages -->
<div>
<h3 class="text-xl font-semibold mb-6">Tools & Languages</h3>
<div class="grid grid-cols-2 gap-6">
<div class="bg-white p-4 rounded-md shadow-sm flex items-center">
<div class="w-10 h-10 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center mr-3">
<i class="fab fa-git-alt"></i>
</div>
<span>Git & GitHub</span>
</div>
<div class="bg-white p-4 rounded-md shadow-sm flex items-center">
<div class="w-10 h-10 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center mr-3">
<i class="fab fa-docker"></i>
</div>
<span>Docker</span>
</div>
<div class="bg-white p-4 rounded-md shadow-sm flex items-center">
<div class="w-10 h-10 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center mr-3">
<i class="fab fa-aws"></i>
</div>
<span>AWS Services</span>
</div>
<div class="bg-white p-4 rounded-md shadow-sm flex items-center">
<div class="w-10 h-10 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center mr-3">
<i class="fas fa-server"></i>
</div>
<span>SQL & NoSQL</span>
</div>
<div class="bg-white p-4 rounded-md shadow-sm flex items-center">
<div class="w-10 h-10 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center mr-3">
<i class="fab fa-python"></i>
</div>
<span>Python</span>
</div>
<div class="bg-white p-4 rounded-md shadow-sm flex items-center">
<div class="w-10 h-10 rounded-full bg-primary bg-opacity-10 text-primary flex items-center justify-center mr-3">
<i class="fas fa-code"></i>
</div>
<span>TypeScript</span>
</div>
</div>
<h3 class="text-xl font-semibold mb-6 mt-8">Soft Skills</h3>
<div class="flex flex-wrap gap-3">
<span class="bg-white px-4 py-2 rounded-full text-sm">Communication</span>
<span class="bg-white px-4 py-2 rounded-full text-sm">Team Leadership</span>
<span class="bg-white px-4 py-2 rounded-full text-sm">Problem Solving</span>
<span class="bg-white px-4 py-2 rounded-full text-sm">Time Management</span>
<span class="bg-white px-4 py-2 rounded-full text-sm">Project Planning</span>
<span class="bg-white px-4 py-2 rounded-full text-sm">Adaptability</span>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="section bg-white">
<div class="container mx-auto px-4 md:px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Featured Projects</h2>
<div class="w-20 h-1 bg-primary mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="card bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1552234994-66f2344f4db7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="E-commerce Dashboard" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-3">
<span class="text-sm font-medium text-primary">React</span>
<div class="flex">
<a href="#" class="text-gray-400 hover:text-primary mr-3">
<i class="fas fa-code"></i>
</a>
<a href="#" class="text-gray-400 hover:text-primary">
<i class="fas fa-eye"></i>
</a>
</div>
</div>
<h3 class="text-xl font-semibold mb-2">E-commerce Dashboard</h3>
<p class="text-gray-600 mb-4">Admin dashboard with analytics for managing products, orders and customers.</p>
<div class="flex flex-wrap gap-2">
<span class="text-xs bg-gray-100 px-3 py-1 rounded">React</span>
<span class="text-xs bg-gray-100 px-3 py-1 rounded">Chart.js</span>
<span class="text-xs bg-gray-100 px-3 py-1 rounded">Material UI</span>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="card bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1115&q=80"
alt="Finance App" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-3">
<span class="text-sm font-medium text-primary">React Native</span>
<div class="flex">
<a href="#" class="text-gray-400 hover:text-primary mr-3">
<i class="fas fa-code"></i>
</a>
<a href="#" class="text-gray-400 hover:text-primary">
<i class="fas fa-eye"></i>
</a>
</div>
</div>
<h3 class="text-xl font-semibold mb-2">Finance Mobile App</h3>
<p class="text-gray-600 mb-4">Mobile application for tracking expenses and managing personal budgets.</p>
<div class="flex flex-wrap gap-2">
<span class="text-xs bg-gray-100 px-3 py-1 rounded">React Native</span>
<span class="text-xs bg-gray-100 px-3 py-1 rounded">Firebase</span>
<span class="text-xs bg-gray-100 px-3 py-1 rounded">Styled Components</span>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="card bg-white rounded-lg overflow-hidden shadow-md hover:shadow-xl">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80"
alt="Task Management" class="w-full h-full object-cover">
</div>
<div class="p-6">
<div class="flex justify-between items-center mb-3">
<span class="text-sm font-medium text-primary">MERN Stack</span>
<div class="flex">
<a href="#" class="text-gray-400 hover:text-primary mr-3">
<i class="fas fa-code"></i>
</a>
<a href="#" class="text-gray-400 hover:text-primary">
<i class="fas fa-eye"></i>
</a>
</div>
</div>
<h3 class="text-xl font-semibold mb-2">Task Management System</h3>
<p class="text-gray-600 mb-4">Collaborative task management with team assignments and deadline tracking.</p>
<div class="flex flex-wrap gap-2">
<span class="text-xs bg-gray-100 px-3 py-1 rounded">React</span>
<span class="text-xs bg-gray-100 px-3 py-1 rounded">Node.js</span>
<span class="text-xs bg-gray-100 px-3 py-1 rounded">MongoDB</span>
</div>
</div>
</div>
</div>
<div class="mt-12 text-center">
<a href="#" class="inline-block border border-primary text-primary px-8 py-3 rounded-md hover:bg-primary hover:text-white transition">View All Projects</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="section bg-gray-100">
<div class="container mx-auto px-4 md:px-6">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Get In Touch</h2>
<div class="w-20 h-1 bg-primary mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 max-w-6xl mx-auto">
<div>
<h3 class="text-2xl font-semibold mb-6">Contact Information</h3>
<div class="space-y-6">
<div class="flex">
<div class="w-12 h-12 rounded-full bg-primary text-white flex items-center justify-center mr-4">
<i class="fas fa-map-marker-alt"></i>
</div>
<div>
<h4 class="font-medium">Location</h4>
<p class="text-gray-600">San Francisco, California</p>
</div>
</div>
<div class="flex">
<div class="w-12 h-12 rounded-full bg-primary text-white flex items-center justify-center mr-4">
<i class="fas fa-envelope"></i>
</div>
<div>
<h4 class="font-medium">Email</h4>
<p class="text-gray-600">alex.morgan@example.com</p>
</div>
</div>
<div class="flex">
<div class="w-12 h-12 rounded-full bg-primary text-white flex items-center justify-center mr-4">
<i class="fas fa-phone"></i>
</div>
<div>
<h4 class="font-medium">Phone</h4>
<p class="text-gray-600">(415) 555-0123</p>
</div>
</div>
<div class="flex">
<div class="w-12 h-12 rounded-full bg-primary text-white flex items-center justify-center mr-4">
<i class="fas fa-globe"></i>
</div>
<div>
<h4 class="font-medium">Website</h4>
<p class="text-gray-600">www.alexmorgan.dev</p>
</div>
</div>
</div>
</div>
<div>
<form class="space-y-6">
<div>
<input type="text" placeholder="Your Name" class="w-full px-4 py-3 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-primary">
</div>
<div>
<input type="email" placeholder="Your Email" class="w-full px-4 py-3 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-primary">
</div>
<div>
<input type="text" placeholder="Subject" class="w-full px-4 py-3 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-primary">
</div>
<div>
<textarea placeholder="Message" rows="5" class="w-full px-4 py-3 rounded border border-gray-300 focus:outline-none focus:ring-2 focus:ring-primary"></textarea>
</div>
<button type="submit" class="bg-primary text-white py-3 px-8 rounded-md font-medium hover:bg-secondary transition w-full md:w-auto">
Send Message <i class="fas fa-paper-plane ml-2"></i>
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-gray-300 py-12">
<div class="container mx-auto px-4 md:px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<div class="text-xl font-bold text-white mb-2">Portfolio<span class="text-accent">.</span></div>
<p class="text-sm">© 2023 Alex Morgan. All Rights Reserved.</p>
</div>
<div>
<div class="flex space-x-4 mb-4">
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 hover:bg-primary text-white flex items-center justify-center">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 hover:bg-primary text-white flex items-center justify-center">
<i class="fab fa-github"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 hover:bg-primary text-white flex items-center justify-center">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-gray-700 hover:bg-primary text-white flex items-center justify-center">
<i class="fab fa-dribbble"></i>
</a>
</div>
<div class="text-center md:text-right">
<a href="#hero" class="text-sm text-gray-400 hover:text-white flex items-center justify-center md:justify-end">
<i class="fas fa-arrow-up mr-2"></i> Back to top
</a>
</div>
</div>
</div>
</div>
</footer>
<script>
// Toggle Mobile Menu
const menuBtn = document.getElementById('menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Dark Mode Toggle
const modeToggle = document.getElementById('mode-toggle');
modeToggle.addEventListener('click', () => {
document.body.classList.toggle('theme-dark');
// Change icon
const icon = modeToggle.querySelector('i');
if (document.body.classList.contains('theme-dark')) {
icon.classList.remove('fa-moon');
icon.classList.add('fa-sun');
} else {
icon.classList.remove('fa-sun');
icon.classList.add('fa-moon');
}
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu after clicking
if (mobileMenu.classList.contains('hidden')) return;
mobileMenu.classList.add('hidden');
}
});
});
</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=parthpatel01/portfolio-website" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |