| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Creative Portfolio | Graphic Designer</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> |
| |
| @keyframes float { |
| 0%, 100% { transform: translateY(0); } |
| 50% { transform: translateY(-20px); } |
| } |
| |
| .floating { |
| animation: float 6s ease-in-out infinite; |
| } |
| |
| .project-card { |
| transition: all 0.3s ease; |
| transform-style: preserve-3d; |
| } |
| |
| .project-card:hover { |
| transform: translateY(-10px) scale(1.02); |
| box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); |
| } |
| |
| .skill-bar { |
| height: 6px; |
| border-radius: 3px; |
| background: linear-gradient(90deg, #4f46e5 0%, #a855f7 100%); |
| transition: width 1s ease-in-out; |
| } |
| |
| .nav-link { |
| position: relative; |
| } |
| |
| .nav-link::after { |
| content: ''; |
| position: absolute; |
| width: 0; |
| height: 2px; |
| bottom: -2px; |
| left: 0; |
| background-color: #4f46e5; |
| transition: width 0.3s ease; |
| } |
| |
| .nav-link:hover::after { |
| width: 100%; |
| } |
| |
| .testimonial-card { |
| perspective: 1000px; |
| } |
| |
| .testimonial-inner { |
| transition: transform 0.6s; |
| transform-style: preserve-3d; |
| } |
| |
| .testimonial-card:hover .testimonial-inner { |
| transform: rotateY(180deg); |
| } |
| |
| .testimonial-front, .testimonial-back { |
| backface-visibility: hidden; |
| position: absolute; |
| width: 100%; |
| height: 100%; |
| } |
| |
| .testimonial-back { |
| transform: rotateY(180deg); |
| } |
| </style> |
| </head> |
| <body class="bg-gray-50 font-sans text-gray-800"> |
| |
| <nav class="fixed w-full bg-white bg-opacity-90 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 items-center"> |
| <div class="flex-shrink-0 flex items-center"> |
| <span class="text-2xl font-bold text-indigo-600">DESIGN<span class="text-purple-500">MIND</span></span> |
| </div> |
| <div class="hidden md:block"> |
| <div class="ml-10 flex items-center space-x-8"> |
| <a href="#home" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2 font-medium">Home</a> |
| <a href="#about" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2 font-medium">About</a> |
| <a href="#work" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2 font-medium">Work</a> |
| <a href="#skills" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2 font-medium">Skills</a> |
| <a href="#testimonials" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2 font-medium">Testimonials</a> |
| <a href="#contact" class="nav-link text-gray-700 hover:text-indigo-600 px-3 py-2 font-medium">Contact</a> |
| </div> |
| </div> |
| <div class="md:hidden"> |
| <button id="menu-toggle" class="text-gray-700 hover:text-indigo-600 focus:outline-none"> |
| <i class="fas fa-bars text-2xl"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| |
| <div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg"> |
| <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> |
| <a href="#home" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-indigo-600">Home</a> |
| <a href="#about" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-indigo-600">About</a> |
| <a href="#work" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-indigo-600">Work</a> |
| <a href="#skills" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-indigo-600">Skills</a> |
| <a href="#testimonials" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-indigo-600">Testimonials</a> |
| <a href="#contact" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-indigo-600">Contact</a> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <section id="home" class="pt-24 pb-16 md:pt-32 md:pb-24 bg-gradient-to-r from-indigo-50 to-purple-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="md:flex items-center justify-between"> |
| <div class="md:w-1/2 mb-12 md:mb-0"> |
| <h1 class="text-4xl md:text-6xl font-bold text-gray-800 mb-4">Hi, I'm <span class="text-indigo-600">Alex</span></h1> |
| <h2 class="text-2xl md:text-3xl font-semibold text-purple-500 mb-6">Graphic Designer & Visual Storyteller</h2> |
| <p class="text-gray-600 mb-8 text-lg leading-relaxed">I create compelling visual experiences that connect brands with their audiences through thoughtful design and creative strategy.</p> |
| <div class="flex space-x-4"> |
| <a href="#work" class="px-6 py-3 bg-indigo-600 text-white font-medium rounded-lg hover:bg-indigo-700 transition duration-300 shadow-lg hover:shadow-xl">View My Work</a> |
| <a href="#contact" class="px-6 py-3 border-2 border-indigo-600 text-indigo-600 font-medium rounded-lg hover:bg-indigo-50 transition duration-300">Hire Me</a> |
| </div> |
| </div> |
| <div class="md:w-1/2 flex justify-center"> |
| <div class="relative w-64 h-64 md:w-80 md:h-80 rounded-full bg-gradient-to-r from-indigo-400 to-purple-500 p-1 floating"> |
| <img src="https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" |
| alt="Designer Portrait" |
| class="w-full h-full rounded-full object-cover border-4 border-white"> |
| <div class="absolute -bottom-4 -right-4 bg-white p-3 rounded-full shadow-xl"> |
| <div class="w-16 h-16 bg-indigo-600 rounded-full flex items-center justify-center"> |
| <i class="fas fa-palette text-white text-2xl"></i> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="about" class="py-16 md:py-24 bg-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">About <span class="text-indigo-600">Me</span></h2> |
| <div class="w-20 h-1 bg-gradient-to-r from-indigo-500 to-purple-500 mx-auto"></div> |
| </div> |
| |
| <div class="md:flex items-center"> |
| <div class="md:w-1/3 mb-8 md:mb-0 flex justify-center"> |
| <div class="relative"> |
| <div class="w-64 h-64 md:w-80 md:h-80 rounded-2xl overflow-hidden shadow-xl"> |
| <img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" |
| alt="Designer at work" |
| class="w-full h-full object-cover"> |
| </div> |
| <div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-xl shadow-lg hidden md:block"> |
| <div class="flex items-center"> |
| <div class="w-12 h-12 bg-indigo-100 rounded-lg flex items-center justify-center mr-3"> |
| <i class="fas fa-award text-indigo-600 text-xl"></i> |
| </div> |
| <div> |
| <p class="font-bold text-gray-800">5+ Years</p> |
| <p class="text-sm text-gray-600">Experience</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="md:w-2/3 md:pl-12"> |
| <h3 class="text-2xl font-semibold text-gray-800 mb-4">Crafting Visual Stories That Resonate</h3> |
| <p class="text-gray-600 mb-6 leading-relaxed">With a passion for visual storytelling and a keen eye for detail, I specialize in creating designs that not only look beautiful but also communicate effectively. My approach combines strategic thinking with creative execution to deliver solutions that make an impact.</p> |
| |
| <div class="grid grid-cols-2 gap-6 mb-8"> |
| <div class="flex items-start"> |
| <div class="bg-indigo-100 p-3 rounded-lg mr-4"> |
| <i class="fas fa-lightbulb text-indigo-600 text-xl"></i> |
| </div> |
| <div> |
| <h4 class="font-semibold text-gray-800 mb-1">Creative Vision</h4> |
| <p class="text-gray-600 text-sm">Unique concepts that stand out</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <div class="bg-purple-100 p-3 rounded-lg mr-4"> |
| <i class="fas fa-brush text-purple-600 text-xl"></i> |
| </div> |
| <div> |
| <h4 class="font-semibold text-gray-800 mb-1">Artistic Flair</h4> |
| <p class="text-gray-600 text-sm">Aesthetic excellence in every detail</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <div class="bg-indigo-100 p-3 rounded-lg mr-4"> |
| <i class="fas fa-bullseye text-indigo-600 text-xl"></i> |
| </div> |
| <div> |
| <h4 class="font-semibold text-gray-800 mb-1">Strategic Focus</h4> |
| <p class="text-gray-600 text-sm">Designs with purpose and direction</p> |
| </div> |
| </div> |
| <div class="flex items-start"> |
| <div class="bg-purple-100 p-3 rounded-lg mr-4"> |
| <i class="fas fa-users text-purple-600 text-xl"></i> |
| </div> |
| <div> |
| <h4 class="font-semibold text-gray-800 mb-1">User-Centric</h4> |
| <p class="text-gray-600 text-sm">Solutions tailored to your audience</p> |
| </div> |
| </div> |
| </div> |
| |
| <div class="flex flex-wrap gap-4"> |
| <div class="px-4 py-2 bg-indigo-100 text-indigo-800 rounded-full text-sm font-medium">Brand Identity</div> |
| <div class="px-4 py-2 bg-purple-100 text-purple-800 rounded-full text-sm font-medium">Print Design</div> |
| <div class="px-4 py-2 bg-indigo-100 text-indigo-800 rounded-full text-sm font-medium">Packaging</div> |
| <div class="px-4 py-2 bg-purple-100 text-purple-800 rounded-full text-sm font-medium">Illustration</div> |
| <div class="px-4 py-2 bg-indigo-100 text-indigo-800 rounded-full text-sm font-medium">Typography</div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="work" class="py-16 md:py-24 bg-gray-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">My <span class="text-indigo-600">Portfolio</span></h2> |
| <div class="w-20 h-1 bg-gradient-to-r from-indigo-500 to-purple-500 mx-auto mb-6"></div> |
| <p class="text-gray-600 max-w-2xl mx-auto">A selection of my recent design projects showcasing different styles and industries</p> |
| </div> |
| |
| <div class="flex justify-center mb-8"> |
| <div class="inline-flex rounded-md shadow-sm"> |
| <button type="button" class="filter-btn px-4 py-2 text-sm font-medium rounded-l-lg border border-gray-300 bg-white text-gray-700 hover:bg-gray-50" data-filter="all"> |
| All |
| </button> |
| <button type="button" class="filter-btn px-4 py-2 text-sm font-medium border-t border-b border-gray-300 bg-white text-gray-700 hover:bg-gray-50" data-filter="branding"> |
| Branding |
| </button> |
| <button type="button" class="filter-btn px-4 py-2 text-sm font-medium border border-gray-300 bg-white text-gray-700 hover:bg-gray-50" data-filter="print"> |
| Print |
| </button> |
| <button type="button" class="filter-btn px-4 py-2 text-sm font-medium rounded-r-lg border border-gray-300 bg-white text-gray-700 hover:bg-gray-50" data-filter="packaging"> |
| Packaging |
| </button> |
| </div> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| |
| <div class="project-card branding" data-category="branding"> |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg"> |
| <div class="relative overflow-hidden h-64"> |
| <img src="https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1064&q=80" |
| alt="Brand Identity Project" |
| class="w-full h-full object-cover transition duration-500 hover:scale-110"> |
| <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6"> |
| <div> |
| <span class="text-xs text-white bg-indigo-600 px-2 py-1 rounded">Branding</span> |
| <h3 class="text-white text-xl font-semibold mt-2">Nova Coffee Branding</h3> |
| </div> |
| </div> |
| </div> |
| <div class="p-6"> |
| <p class="text-gray-600 mb-4">Complete brand identity for an artisanal coffee company, including logo, color palette, and visual language.</p> |
| <a href="#" class="text-indigo-600 font-medium hover:text-indigo-800 flex items-center"> |
| View Case Study <i class="fas fa-arrow-right ml-2"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="project-card print" data-category="print"> |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg"> |
| <div class="relative overflow-hidden h-64"> |
| <img src="https://images.unsplash.com/photo-1542621334-a254cf47733d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" |
| alt="Print Design Project" |
| class="w-full h-full object-cover transition duration-500 hover:scale-110"> |
| <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6"> |
| <div> |
| <span class="text-xs text-white bg-purple-600 px-2 py-1 rounded">Print</span> |
| <h3 class="text-white text-xl font-semibold mt-2">Urban Magazine Layout</h3> |
| </div> |
| </div> |
| </div> |
| <div class="p-6"> |
| <p class="text-gray-600 mb-4">Editorial design for a contemporary lifestyle magazine featuring innovative typography and layout techniques.</p> |
| <a href="#" class="text-indigo-600 font-medium hover:text-indigo-800 flex items-center"> |
| View Case Study <i class="fas fa-arrow-right ml-2"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="project-card packaging" data-category="packaging"> |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg"> |
| <div class="relative overflow-hidden h-64"> |
| <img src="https://images.unsplash.com/photo-1605000797499-95e51c0df0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" |
| alt="Packaging Design Project" |
| class="w-full h-full object-cover transition duration-500 hover:scale-110"> |
| <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6"> |
| <div> |
| <span class="text-xs text-white bg-indigo-600 px-2 py-1 rounded">Packaging</span> |
| <h3 class="text-white text-xl font-semibold mt-2">Organic Skincare Line</h3> |
| </div> |
| </div> |
| </div> |
| <div class="p-6"> |
| <p class="text-gray-600 mb-4">Sustainable packaging design for an organic skincare brand using eco-friendly materials and minimalist aesthetics.</p> |
| <a href="#" class="text-indigo-600 font-medium hover:text-indigo-800 flex items-center"> |
| View Case Study <i class="fas fa-arrow-right ml-2"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="project-card branding" data-category="branding"> |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg"> |
| <div class="relative overflow-hidden h-64"> |
| <img src="https://images.unsplash.com/photo-1567443024551-f3e3a7b9d41c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" |
| alt="Brand Identity Project" |
| class="w-full h-full object-cover transition duration-500 hover:scale-110"> |
| <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6"> |
| <div> |
| <span class="text-xs text-white bg-purple-600 px-2 py-1 rounded">Branding</span> |
| <h3 class="text-white text-xl font-semibold mt-2">Tech Startup Identity</h3> |
| </div> |
| </div> |
| </div> |
| <div class="p-6"> |
| <p class="text-gray-600 mb-4">Modern brand identity for a fintech startup, including logo, iconography, and digital assets.</p> |
| <a href="#" class="text-indigo-600 font-medium hover:text-indigo-800 flex items-center"> |
| View Case Study <i class="fas fa-arrow-right ml-2"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="project-card print" data-category="print"> |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg"> |
| <div class="relative overflow-hidden h-64"> |
| <img src="https://images.unsplash.com/photo-1583947581924-860bda6a26df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" |
| alt="Print Design Project" |
| class="w-full h-full object-cover transition duration-500 hover:scale-110"> |
| <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6"> |
| <div> |
| <span class="text-xs text-white bg-indigo-600 px-2 py-1 rounded">Print</span> |
| <h3 class="text-white text-xl font-semibold mt-2">Music Festival Posters</h3> |
| </div> |
| </div> |
| </div> |
| <div class="p-6"> |
| <p class="text-gray-600 mb-4">Series of vibrant concert posters featuring bold typography and psychedelic illustrations.</p> |
| <a href="#" class="text-indigo-600 font-medium hover:text-indigo-800 flex items-center"> |
| View Case Study <i class="fas fa-arrow-right ml-2"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="project-card packaging" data-category="packaging"> |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg"> |
| <div class="relative overflow-hidden h-64"> |
| <img src="https://images.unsplash.com/photo-1556909212-d5b604d0c90d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80" |
| alt="Packaging Design Project" |
| class="w-full h-full object-cover transition duration-500 hover:scale-110"> |
| <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6"> |
| <div> |
| <span class="text-xs text-white bg-purple-600 px-2 py-1 rounded">Packaging</span> |
| <h3 class="text-white text-xl font-semibold mt-2">Gourmet Chocolate Box</h3> |
| </div> |
| </div> |
| </div> |
| <div class="p-6"> |
| <p class="text-gray-600 mb-4">Luxury packaging for a premium chocolate brand featuring foil stamping and embossing.</p> |
| <a href="#" class="text-indigo-600 font-medium hover:text-indigo-800 flex items-center"> |
| View Case Study <i class="fas fa-arrow-right ml-2"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="text-center mt-12"> |
| <a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-indigo-600 hover:bg-indigo-700"> |
| View All Projects <i class="fas fa-arrow-right ml-2"></i> |
| </a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="skills" class="py-16 md:py-24 bg-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">My <span class="text-indigo-600">Skills</span></h2> |
| <div class="w-20 h-1 bg-gradient-to-r from-indigo-500 to-purple-500 mx-auto mb-6"></div> |
| <p class="text-gray-600 max-w-2xl mx-auto">A blend of technical expertise and creative vision to bring your ideas to life</p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12"> |
| <div> |
| <h3 class="text-xl font-semibold text-gray-800 mb-6">Design Skills</h3> |
| |
| <div class="space-y-6"> |
| <div> |
| <div class="flex justify-between mb-2"> |
| <span class="text-gray-700 font-medium">Brand Identity</span> |
| <span class="text-gray-500">95%</span> |
| </div> |
| <div class="w-full bg-gray-200 rounded-full h-2"> |
| <div class="skill-bar h-2 rounded-full" style="width: 95%"></div> |
| </div> |
| </div> |
| |
| <div> |
| <div class="flex justify-between mb-2"> |
| <span class="text-gray-700 font-medium">Typography</span> |
| <span class="text-gray-500">90%</span> |
| </div> |
| <div class="w-full bg-gray-200 rounded-full h-2"> |
| <div class="skill-bar h-2 rounded-full" style="width: 90%"></div> |
| </div> |
| </div> |
| |
| <div> |
| <div class="flex justify-between mb-2"> |
| <span class="text-gray-700 font-medium">Color Theory</span> |
| <span class="text-gray-500">92%</span> |
| </div> |
| <div class="w-full bg-gray-200 rounded-full h-2"> |
| <div class="skill-bar h-2 rounded-full" style="width: 92%"></div> |
| </div> |
| </div> |
| |
| <div> |
| <div class="flex justify-between mb-2"> |
| <span class="text-gray-700 font-medium">Layout & Composition</span> |
| <span class="text-gray-500">88%</span> |
| </div> |
| <div class="w-full bg-gray-200 rounded-full h-2"> |
| <div class="skill-bar h-2 rounded-full" style="width: 88%"></div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div> |
| <h3 class="text-xl font-semibold text-gray-800 mb-6">Software Proficiency</h3> |
| |
| <div class="space-y-6"> |
| <div> |
| <div class="flex justify-between mb-2"> |
| <span class="text-gray-700 font-medium">Adobe Illustrator</span> |
| <span class="text-gray-500">98%</span> |
| </div> |
| <div class="w-full bg-gray-200 rounded-full h-2"> |
| <div class="skill-bar h-2 rounded-full" style="width: 98%"></div> |
| </div> |
| </div> |
| |
| <div> |
| <div class="flex justify-between mb-2"> |
| <span class="text-gray-700 font-medium">Adobe Photoshop</span> |
| <span class="text-gray-500">85%</span> |
| </div> |
| <div class="w-full bg-gray-200 rounded-full h-2"> |
| <div class="skill-bar h-2 rounded-full" style="width: 85%"></div> |
| </div> |
| </div> |
| |
| <div> |
| <div class="flex justify-between mb-2"> |
| <span class="text-gray-700 font-medium">Adobe InDesign</span> |
| <span class="text-gray-500">90%</span> |
| </div> |
| <div class="w-full bg-gray-200 rounded-full h-2"> |
| <div class="skill-bar h-2 rounded-full" style="width: 90%"></div> |
| </div> |
| </div> |
| |
| <div> |
| <div class="flex justify-between mb-2"> |
| <span class="text-gray-700 font-medium">Figma</span> |
| <span class="text-gray-500">80%</span> |
| </div> |
| <div class="w-full bg-gray-200 rounded-full h-2"> |
| <div class="skill-bar h-2 rounded-full" style="width: 80%"></div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="mt-16 grid grid-cols-2 md:grid-cols-4 gap-6"> |
| <div class="bg-indigo-50 p-6 rounded-xl text-center"> |
| <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4"> |
| <i class="fas fa-pen-fancy text-indigo-600 text-2xl"></i> |
| </div> |
| <h4 class="font-semibold text-gray-800 mb-2">Creative Direction</h4> |
| <p class="text-gray-600 text-sm">Developing cohesive visual strategies</p> |
| </div> |
| |
| <div class="bg-purple-50 p-6 rounded-xl text-center"> |
| <div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-4"> |
| <i class="fas fa-pencil-ruler text-purple-600 text-2xl"></i> |
| </div> |
| <h4 class="font-semibold text-gray-800 mb-2">Concept Development</h4> |
| <p class="text-gray-600 text-sm">From initial sketches to final execution</p> |
| </div> |
| |
| <div class="bg-indigo-50 p-6 rounded-xl text-center"> |
| <div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4"> |
| <i class="fas fa-print text-indigo-600 text-2xl"></i> |
| </div> |
| <h4 class="font-semibold text-gray-800 mb-2">Print Production</h4> |
| <p class="text-gray-600 text-sm">Expertise in preparing files for print</p> |
| </div> |
| |
| <div class="bg-purple-50 p-6 rounded-xl text-center"> |
| <div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-4"> |
| <i class="fas fa-lightbulb text-purple-600 text-2xl"></i> |
| </div> |
| <h4 class="font-semibold text-gray-800 mb-2">Creative Problem Solving</h4> |
| <p class="text-gray-600 text-sm">Innovative solutions to design challenges</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="testimonials" class="py-16 md:py-24 bg-gray-50"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Client <span class="text-indigo-600">Testimonials</span></h2> |
| <div class="w-20 h-1 bg-gradient-to-r from-indigo-500 to-purple-500 mx-auto mb-6"></div> |
| <p class="text-gray-600 max-w-2xl mx-auto">What my clients say about working with me</p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| |
| <div class="testimonial-card h-full"> |
| <div class="testimonial-inner relative h-full"> |
| <div class="testimonial-front bg-white p-8 rounded-xl shadow-lg h-full"> |
| <div class="flex items-center mb-6"> |
| <div class="w-12 h-12 rounded-full overflow-hidden mr-4"> |
| <img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" |
| alt="Client" |
| class="w-full h-full object-cover"> |
| </div> |
| <div> |
| <h4 class="font-semibold text-gray-800">Michael Johnson</h4> |
| <p class="text-sm text-gray-600">CEO, Nova Coffee</p> |
| </div> |
| </div> |
| <p class="text-gray-600 mb-6">"Alex transformed our brand identity completely. The new design perfectly captures our values and has significantly improved our market presence. The attention to detail was exceptional."</p> |
| <div class="flex text-yellow-400"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| </div> |
| </div> |
| <div class="testimonial-back bg-indigo-600 p-8 rounded-xl shadow-lg h-full flex items-center justify-center"> |
| <div class="text-center text-white"> |
| <i class="fas fa-quote-left text-3xl mb-4 opacity-50"></i> |
| <p class="mb-4">"Working with Alex was a game-changer for our business. The designs exceeded all expectations."</p> |
| <div class="w-12 h-1 bg-white mx-auto my-4"></div> |
| <p class="text-sm">Michael Johnson</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="testimonial-card h-full"> |
| <div class="testimonial-inner relative h-full"> |
| <div class="testimonial-front bg-white p-8 rounded-xl shadow-lg h-full"> |
| <div class="flex items-center mb-6"> |
| <div class="w-12 h-12 rounded-full overflow-hidden mr-4"> |
| <img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=688&q=80" |
| alt="Client" |
| class="w-full h-full object-cover"> |
| </div> |
| <div> |
| <h4 class="font-semibold text-gray-800">Sarah Williams</h4> |
| <p class="text-sm text-gray-600">Marketing Director, Urban Magazine</p> |
| </div> |
| </div> |
| <p class="text-gray-600 mb-6">"The magazine layouts Alex created for us have been praised by both readers and advertisers. The innovative typography and clean design elevated our publication to a new level."</p> |
| <div class="flex text-yellow-400"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| </div> |
| </div> |
| <div class="testimonial-back bg-purple-600 p-8 rounded-xl shadow-lg h-full flex items-center justify-center"> |
| <div class="text-center text-white"> |
| <i class="fas fa-quote-left text-3xl mb-4 opacity-50"></i> |
| <p class="mb-4">"Alex's designs brought a fresh, modern aesthetic that perfectly aligned with our brand vision."</p> |
| <div class="w-12 h-1 bg-white mx-auto my-4"></div> |
| <p class="text-sm">Sarah Williams</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| |
| <div class="testimonial-card h-full"> |
| <div class="testimonial-inner relative h-full"> |
| <div class="testimonial-front bg-white p-8 rounded-xl shadow-lg h-full"> |
| <div class="flex items-center mb-6"> |
| <div class="w-12 h-12 rounded-full overflow-hidden mr-4"> |
| <img src="https://images.unsplash.com/photo-1551836022-d5d88e9218df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" |
| alt="Client" |
| class="w-full h-full object-cover"> |
| </div> |
| <div> |
| <h4 class="font-semibold text-gray-800">David Chen</h4> |
| <p class="text-sm text-gray-600">Founder, Organic Skincare Co.</p> |
| </div> |
| </div> |
| <p class="text-gray-600 mb-6">"Our packaging design by Alex not only looks stunning but also communicates our commitment to sustainability. Sales have increased by 40% since the redesign."</p> |
| <div class="flex text-yellow-400"> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star"></i> |
| <i class="fas fa-star-half-alt"></i> |
| </div> |
| </div> |
| <div class="testimonial-back bg-indigo-600 p-8 rounded-xl shadow-lg h-full flex items-center justify-center"> |
| <div class="text-center text-white"> |
| <i class="fas fa-quote-left text-3xl mb-4 opacity-50"></i> |
| <p class="mb-4">"The packaging design perfectly balanced aesthetics with functionality, exceeding our expectations."</p> |
| <div class="w-12 h-1 bg-white mx-auto my-4"></div> |
| <p class="text-sm">David Chen</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="contact" class="py-16 md:py-24 bg-white"> |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
| <div class="text-center mb-16"> |
| <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Get In <span class="text-indigo-600">Touch</span></h2> |
| <div class="w-20 h-1 bg-gradient-to-r from-indigo-500 to-purple-500 mx-auto mb-6"></div> |
| <p class="text-gray-600 max-w-2xl mx-auto">Have a project in mind or want to discuss potential collaboration? I'd love to hear from you!</p> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12"> |
| <div> |
| <form class="space-y-6"> |
| <div> |
| <label for="name" class="block text-sm font-medium text-gray-700 mb-1">Your Name</label> |
| <input type="text" id="name" name="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" placeholder="John Doe"> |
| </div> |
| |
| <div> |
| <label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label> |
| <input type="email" id="email" name="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" placeholder="john@example.com"> |
| </div> |
| |
| <div> |
| <label for="subject" class="block text-sm font-medium text-gray-700 mb-1">Subject</label> |
| <input type="text" id="subject" name="subject" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" placeholder="Project Inquiry"> |
| </div> |
| |
| <div> |
| <label for="message" class="block text-sm font-medium text-gray-700 mb-1">Your Message</label> |
| <textarea id="message" name="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" placeholder="Tell me about your project..."></textarea> |
| </div> |
| |
| <div> |
| <button type="submit" class="w-full px-6 py-3 bg-indigo-600 text-white font-medium rounded-lg hover:bg-indigo-700 transition duration-300 shadow-lg hover:shadow-xl"> |
| Send Message <i class="fas fa-paper-plane ml-2"></i> |
| </button> |
| </div> |
| </form> |
| </div> |
| |
| <div> |
| <div class="bg-indigo-50 p-8 rounded-xl h-full"> |
| <h3 class="text-xl font-semibold text-gray-800 mb-6">Contact Information</h3> |
| |
| <div class="space-y-6"> |
| <div class="flex items-start"> |
| <div class="bg-indigo-100 p-3 rounded-lg mr-4"> |
| <i class="fas fa-map-marker-alt text-indigo-600"></i> |
| </div> |
| <div> |
| <h4 class="font-medium text-gray-800 mb-1">Location</h4> |
| <p class="text-gray-600">123 Design Street, Creative City, CA 90210</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="bg-purple-100 p-3 rounded-lg mr-4"> |
| <i class="fas fa-envelope text-purple-600"></i> |
| </div> |
| <div> |
| <h4 class="font-medium text-gray-800 mb-1">Email</h4> |
| <p class="text-gray-600">hello@designmind.com</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="bg-indigo-100 p-3 rounded-lg mr-4"> |
| <i class="fas fa-phone-alt text-indigo-600"></i> |
| </div> |
| <div> |
| <h4 class="font-medium text-gray-800 mb-1">Phone</h4> |
| <p class="text-gray-600">+1 (555) 123-4567</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="bg-purple-100 p-3 rounded-lg mr-4"> |
| <i class="fas fa-clock text-purple-600"></i> |
| </div> |
| <div> |
| <h4 class="font-medium text-gray-800 mb-1">Working Hours</h4> |
| <p class="text-gray-600">Mon-Fri: 9am - 6pm</p> |
| <p class="text-gray-600">Sat: By appointment</p> |
| </div> |
| </div> |
| </div> |
| |
| <div class="mt-8"> |
| <h4 class="font-medium text-gray-800 mb-4">Follow Me</h4> |
| <div class="flex space-x-4"> |
| <a href="#" class="w-10 h-10 bg-white rounded-full flex items-center justify-center shadow-md hover:bg-indigo-600 hover:text-white transition duration-300"> |
| <i class="fab fa-behance"></i> |
| </a> |
| <a href="#" class="w-10 h-10 bg-white rounded-full flex items-center justify-center shadow-md hover:bg-indigo-600 hover:text-white transition duration-300"> |
| <i class="fab fa-dribbble"></i> |
| </a> |
| <a href="#" class="w-10 h-10 bg-white rounded-full flex items-center justify-center shadow-md hover:bg-indigo-600 hover:text-white transition duration-300"> |
| <i class="fab fa-instagram"></i> |
| </a> |
| <a href="#" class="w-10 h-10 bg-white rounded-full flex items-center justify-center shadow-md hover:bg-indigo-600 hover:text-white transition duration-300"> |
| <i class="fab fa-linkedin-in"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <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="grid grid-cols-1 md:grid-cols-4 gap-8"> |
| <div> |
| <h3 class="text-xl font-bold mb-4">DESIGN<span class="text-purple-400">MIND</span></h3> |
| <p class="text-gray-400 mb-4">Creating meaningful design experiences that connect brands with their audiences.</p> |
| <div class="flex space-x-4"> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i class="fab fa-behance"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i class="fab fa-dribbble"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i class="fab fa-instagram"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white"> |
| <i class="fab fa-linkedin-in"></i> |
| </a> |
| </div> |
| </div> |
| |
| <div> |
| <h4 class="text-lg font-semibold mb-4">Quick Links</h4> |
| <ul class="space-y-2"> |
| <li><a href="#home" class="text-gray-400 hover:text-white">Home</a></li> |
| <li><a href="#about" class="text-gray-400 hover:text-white">About</a></li> |
| <li><a href="#work" class="text-gray-400 hover:text-white">Portfolio</a></li> |
| <li><a href="#skills" class="text-gray-400 hover:text-white">Skills</a></li> |
| <li><a href="#contact" class="text-gray-400 hover:text-white">Contact</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h4 class="text-lg font-semibold mb-4">Services</h4> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white">Brand Identity</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Print Design</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Packaging</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Illustration</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Art Direction</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h4 class="text-lg font-semibold mb-4">Newsletter</h4> |
| <p class="text-gray-400 mb-4">Subscribe to my newsletter for design tips and updates.</p> |
| <form class="flex"> |
| <input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-lg focus:outline-none text-gray-900 w-full"> |
| <button type="submit" class="bg-purple-600 hover:bg-purple-700 px-4 py-2 rounded-r-lg"> |
| <i class="fas fa-paper-plane"></i> |
| </button> |
| </form> |
| </div> |
| </div> |
| |
| <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> |
| <p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 DESIGNMIND. All rights reserved.</p> |
| <div class="flex space-x-6"> |
| <a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a> |
| <a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a> |
| </div> |
| </div> |
| </div> |
| </footer> |
|
|
| |
| <button id="back-to-top" class="fixed bottom-8 right-8 w-12 h-12 bg-indigo-600 text-white rounded-full shadow-lg hidden"> |
| <i class="fas fa-arrow-up"></i> |
| </button> |
|
|
| <script> |
| |
| document.getElementById('menu-toggle').addEventListener('click', function() { |
| document.getElementById('mobile-menu').classList.toggle('hidden'); |
| }); |
| |
| |
| const filterButtons = document.querySelectorAll('.filter-btn'); |
| const projectCards = document.querySelectorAll('.project-card'); |
| |
| filterButtons.forEach(button => { |
| button.addEventListener('click', function() { |
| |
| filterButtons.forEach(btn => btn.classList.remove('bg-indigo-600', 'text-white')); |
| |
| |
| this.classList.add('bg-indigo-600', 'text-white'); |
| |
| const filterValue = this.getAttribute('data-filter'); |
| |
| projectCards.forEach(card => { |
| if (filterValue === 'all' || card.getAttribute('data-category') === filterValue) { |
| card.style.display = 'block'; |
| } else { |
| card.style.display = 'none'; |
| } |
| }); |
| }); |
| }); |
| |
| |
| const backToTopButton = document.getElementById('back-to-top'); |
| |
| window.addEventListener('scroll', function() { |
| if (window.pageYOffset > 300) { |
| backToTopButton.classList.remove('hidden'); |
| } else { |
| backToTopButton.classList.add('hidden'); |
| } |
| }); |
| |
| backToTopButton.addEventListener('click', function() { |
| window.scrollTo({ top: 0, behavior: 'smooth' }); |
| }); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function(e) { |
| e.preventDefault(); |
| |
| const targetId = this.getAttribute('href'); |
| const targetElement = document.querySelector(targetId); |
| |
| if (targetElement) { |
| window.scrollTo({ |
| top: targetElement.offsetTop - 80, |
| behavior: 'smooth' |
| }); |
| |
| |
| document.getElementById('mobile-menu').classList.add('hidden'); |
| } |
| }); |
| }); |
| |
| |
| function animateSkillBars() { |
| const skillBars = document.querySelectorAll('.skill-bar'); |
| |
| skillBars.forEach(bar => { |
| const width = bar.style.width; |
| bar.style.width = '0'; |
| |
| setTimeout(() => { |
| bar.style.width = width; |
| }, 100); |
| }); |
| } |
| |
| |
| const observer = new IntersectionObserver((entries) => { |
| entries.forEach(entry => { |
| if (entry.isIntersecting) { |
| if (entry.target.id === 'skills') { |
| animateSkillBars(); |
| } |
| entry.target.classList.add('animate-fadeIn'); |
| } |
| }); |
| }, { threshold: 0.1 }); |
| |
| |
| document.querySelectorAll('section').forEach(section => { |
| section.classList.add('opacity-0', 'transition-opacity', 'duration-500'); |
| observer.observe(section); |
| }); |
| </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=vickkey/vkk" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |