pixelportfolio-pro / projects.html
Scroll26's picture
make a multi page portfolio, a main page for highlights and overview, a page for all projects listed with cards and previews, and individual pages for all projects.
fe3d38d verified
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Projects | PixelPortfolio Pro</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gray-50">
<custom-navbar active="projects"></custom-navbar>
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<div class="text-center mb-12">
<h1 class="text-4xl font-bold text-gray-900 mb-4">My Projects</h1>
<p class="text-gray-600 max-w-2xl mx-auto">Explore my diverse portfolio of digital creations. Each project represents unique challenges and innovative solutions.</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition-all">
<img src="http://static.photos/technology/1200x630/1" alt="Project 1" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">E-commerce Platform</h3>
<p class="text-gray-600 mb-4 text-sm">A full-featured online store with custom checkout flow.</p>
<div class="flex justify-between items-center">
<span class="text-xs bg-primary-100 text-primary px-3 py-1 rounded-full">Web Development</span>
<a href="project-1.html" class="text-primary font-medium hover:text-primary-600 transition-colors text-sm">View β†’</a>
</div>
</div>
</div>
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition-all">
<img src="http://static.photos/office/1200x630/2" alt="Project 2" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Productivity App</h3>
<p class="text-gray-600 mb-4 text-sm">Helping teams collaborate more effectively.</p>
<div class="flex justify-between items-center">
<span class="text-xs bg-primary-100 text-primary px-3 py-1 rounded-full">Mobile App</span>
<a href="project-2.html" class="text-primary font-medium hover:text-primary-600 transition-colors text-sm">View β†’</a>
</div>
</div>
</div>
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition-all">
<img src="http://static.photos/education/1200x630/3" alt="Project 3" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Learning Platform</h3>
<p class="text-gray-600 mb-4 text-sm">Interactive courses with progress tracking.</p>
<div class="flex justify-between items-center">
<span class="text-xs bg-primary-100 text-primary px-3 py-1 rounded-full">Web Development</span>
<a href="project-3.html" class="text-primary font-medium hover:text-primary-600 transition-colors text-sm">View β†’</a>
</div>
</div>
</div>
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition-all">
<img src="http://static.photos/food/1200x630/4" alt="Project 4" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Restaurant Website</h3>
<p class="text-gray-600 mb-4 text-sm">Modern design with online reservation system.</p>
<div class="flex justify-between items-center">
<span class="text-xs bg-primary-100 text-primary px-3 py-1 rounded-full">Web Design</span>
<a href="project-4.html" class="text-primary font-medium hover:text-primary-600 transition-colors text-sm">View β†’</a>
</div>
</div>
</div>
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition-all">
<img src="http://static.photos/health/1200x630/5" alt="Project 5" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Health Tracker</h3>
<p class="text-gray-600 mb-4 text-sm">Monitor fitness goals and nutrition intake.</p>
<div class="flex justify-between items-center">
<span class="text-xs bg-primary-100 text-primary px-3 py-1 rounded-full">Mobile App</span>
<a href="project-5.html" class="text-primary font-medium hover:text-primary-600 transition-colors text-sm">View β†’</a>
</div>
</div>
</div>
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition-all">
<img src="http://static.photos/finance/1200x630/6" alt="Project 6" class="w-full h-48 object-cover">
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Finance Dashboard</h3>
<p class="text-gray-600 mb-4 text-sm">Visualize financial data with interactive charts.</p>
<div class="flex justify-between items-center">
<span class="text-xs bg-primary-100 text-primary px-3 py-1 rounded-full">Web App</span>
<a href="project-6.html" class="text-primary font-medium hover:text-primary-600 transition-colors text-sm">View β†’</a>
</div>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
</body>
</html>