File size: 6,328 Bytes
fe3d38d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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>