try / index.html
Cokybit's picture
Import project - Initial Deployment
c2dc52d verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern Portfolio</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
.hero-gradient {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.card-hover {
transition: all 0.3s ease;
}
.card-hover: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);
}
.text-gradient {
background: linear-gradient(90deg, #667eea, #764ba2);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
</style>
</head>
<body class="font-sans antialiased text-gray-800">
<!-- Navigation -->
<nav class="bg-white shadow-sm fixed w-full z-10">
<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">
<span class="text-xl font-bold text-gradient">Portfolio</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#" class="text-gray-700 hover:text-indigo-600 transition">Home</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 transition">Projects</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 transition">About</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 transition">Contact</a>
</div>
<div class="md:hidden flex items-center">
<button class="text-gray-700">
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient 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="grid md:grid-cols-2 gap-12 items-center">
<div data-aos="fade-right">
<h1 class="text-4xl md:text-5xl font-bold text-white mb-6">Hi, I'm <span class="text-indigo-200">Alex</span></h1>
<h2 class="text-2xl md:text-3xl font-semibold text-indigo-100 mb-6">Frontend Developer & UI Designer</h2>
<p class="text-indigo-100 mb-8 text-lg">I create beautiful, responsive websites with modern technologies and thoughtful user experiences.</p>
<div class="flex space-x-4">
<button class="bg-white text-indigo-600 px-6 py-3 rounded-lg font-medium hover:bg-indigo-50 transition">View Projects</button>
<button class="border-2 border-white text-white px-6 py-3 rounded-lg font-medium hover:bg-white hover:text-indigo-600 transition">Contact Me</button>
</div>
</div>
<div data-aos="fade-left" class="flex justify-center">
<div class="relative">
<div class="absolute -inset-4 bg-indigo-400 rounded-full opacity-20 blur-lg"></div>
<img src="http://static.photos/technology/640x360/42" alt="Developer" class="relative rounded-full w-64 h-64 object-cover border-4 border-white shadow-xl">
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-3xl font-bold text-gray-800 mb-4">My Projects</h2>
<div class="w-20 h-1 bg-gradient-to-r from-indigo-500 to-purple-600 mx-auto"></div>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md card-hover" data-aos="fade-up" data-aos-delay="100">
<img src="http://static.photos/technology/640x360/1" alt="Project 1" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">E-commerce Platform</h3>
<p class="text-gray-600 mb-4">A modern online store with seamless checkout experience.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-indigo-100 text-indigo-800 text-xs px-3 py-1 rounded-full">React</span>
<span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">Tailwind</span>
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">Node.js</span>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md card-hover" data-aos="fade-up" data-aos-delay="200">
<img src="http://static.photos/technology/640x360/2" alt="Project 2" class="w-full h-48 object-cover">
<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 with team collaboration features.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Vue.js</span>
<span class="bg-yellow-100 text-yellow-800 text-xs px-3 py-1 rounded-full">Firebase</span>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="bg-white rounded-xl overflow-hidden shadow-md card-hover" data-aos="fade-up" data-aos-delay="300">
<img src="http://static.photos/technology/640x360/3" alt="Project 3" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Portfolio Website</h3>
<p class="text-gray-600 mb-4">Minimalist portfolio with smooth animations.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-pink-100 text-pink-800 text-xs px-3 py-1 rounded-full">GSAP</span>
<span class="bg-gray-100 text-gray-800 text-xs px-3 py-1 rounded-full">HTML/CSS</span>
</div>
</div>
</div>
</div>
<div class="text-center mt-12" data-aos="fade-up">
<button class="bg-indigo-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-indigo-700 transition">
View All Projects
</button>
</div>
</div>
</section>
<!-- Skills Section -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-3xl font-bold text-gray-800 mb-4">My Skills</h2>
<div class="w-20 h-1 bg-gradient-to-r from-indigo-500 to-purple-600 mx-auto"></div>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Skill 1 -->
<div class="text-center p-6 rounded-xl bg-gray-50" data-aos="zoom-in" data-aos-delay="100">
<div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="code" class="text-indigo-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Frontend</h3>
<p class="text-gray-600">HTML, CSS, JavaScript, React, Vue.js</p>
</div>
<!-- Skill 2 -->
<div class="text-center p-6 rounded-xl bg-gray-50" data-aos="zoom-in" data-aos-delay="200">
<div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="pen-tool" class="text-purple-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">UI/UX Design</h3>
<p class="text-gray-600">Figma, Adobe XD, User Research</p>
</div>
<!-- Skill 3 -->
<div class="text-center p-6 rounded-xl bg-gray-50" data-aos="zoom-in" data-aos-delay="300">
<div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="smartphone" class="text-blue-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Responsive</h3>
<p class="text-gray-600">Mobile-first, TailwindCSS, Flexbox</p>
</div>
<!-- Skill 4 -->
<div class="text-center p-6 rounded-xl bg-gray-50" data-aos="zoom-in" data-aos-delay="400">
<div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="database" class="text-green-600 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Backend</h3>
<p class="text-gray-600">Node.js, Express, MongoDB</p>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Get In Touch</h2>
<div class="w-20 h-1 bg-gradient-to-r from-indigo-500 to-purple-600 mx-auto"></div>
</div>
<div class="grid md:grid-cols-2 gap-12">
<div data-aos="fade-right">
<h3 class="text-2xl font-semibold mb-6">Let's work together</h3>
<p class="text-gray-600 mb-8">I'm always open to discussing product design work or partnership opportunities. Feel free to reach out with any questions or project ideas.</p>
<div class="space-y-4">
<div class="flex items-center">
<div class="bg-indigo-100 p-3 rounded-full mr-4">
<i data-feather="mail" class="text-indigo-600"></i>
</div>
<div>
<h4 class="font-medium">Email</h4>
<p class="text-gray-600">hello@example.com</p>
</div>
</div>
<div class="flex items-center">
<div class="bg-purple-100 p-3 rounded-full mr-4">
<i data-feather="phone" class="text-purple-600"></i>
</div>
<div>
<h4 class="font-medium">Phone</h4>
<p class="text-gray-600">+1 (555) 123-4567</p>
</div>
</div>
<div class="flex items-center">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i data-feather="map-pin" class="text-blue-600"></i>
</div>
<div>
<h4 class="font-medium">Location</h4>
<p class="text-gray-600">San Francisco, CA</p>
</div>
</div>
</div>
</div>
<div data-aos="fade-left">
<form class="bg-white p-8 rounded-xl shadow-md">
<div class="mb-6">
<label for="name" class="block text-gray-700 mb-2">Name</label>
<input type="text" id="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">
</div>
<div class="mb-6">
<label for="email" class="block text-gray-700 mb-2">Email</label>
<input type="email" id="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">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 mb-2">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500"></textarea>
</div>
<button type="submit" class="w-full bg-indigo-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-indigo-700 transition">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-3 gap-8">
<div>
<h3 class="text-xl font-bold mb-4">Portfolio</h3>
<p class="text-gray-400">Creating digital experiences that matter.</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Home</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Projects</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Connect</h4>
<div class="flex space-x-4">
<a href="#" class="bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-indigo-600 transition">
<i data-feather="github"></i>
</a>
<a href="#" class="bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-blue-500 transition">
<i data-feather="twitter"></i>
</a>
<a href="#" class="bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-blue-700 transition">
<i data-feather="linkedin"></i>
</a>
<a href="#" class="bg-gray-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-pink-600 transition">
<i data-feather="dribbble"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-12 pt-8 text-center text-gray-400">
<p>&copy; 2023 Portfolio. All rights reserved.</p>
</div>
</div>
</footer>
<script>
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
feather.replace();
</script>
</body>
</html>