File size: 14,760 Bytes
0564c2b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Articles - PixelPulse Chronicles</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <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>
        tailwind.config = {
            theme: {
                extend: {
                    colors: {
                        primary: '#3B82F6',
                        secondary: '#10B981'
                    }
                }
            }
        }
    </script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        body {
            font-family: 'Inter', sans-serif;
        }
        .hover-lift {
            transition: all 0.3s ease;
        }
        .hover-lift: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);
        }
        .gradient-text {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    </style>
</head>
<body class="bg-gray-50">
    <!-- Navigation -->
    <nav class="bg-white shadow-lg sticky top-0 z-50">
        <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">
                    <div class="flex-shrink-0 flex items-center">
                        <i data-feather="zap" class="text-primary h-8 w-8"></i>
                        <span class="ml-2 text-xl font-bold text-gray-900">PixelPulse</span>
                    </div>
                </div>
                <div class="hidden md:flex items-center space-x-8">
                    <a href="index.html" class="text-gray-900 hover:text-primary px-3 py-2 rounded-md text-sm font-medium transition-colors">Home</a>
                    <a href="articles.html" class="text-primary px-3 py-2 rounded-md text-sm font-medium border-b-2 border-primary">Articles</a>
                    <a href="#" class="text-gray-900 hover:text-primary px-3 py-2 rounded-md text-sm font-medium transition-colors">About</a>
                    <a href="#" class="text-gray-900 hover:text-primary px-3 py-2 rounded-md text-sm font-medium transition-colors">Contact</a>
                </div>
                <div class="flex items-center md:hidden">
                    <button class="mobile-menu-button p-2 rounded-md text-gray-900">
                        <i data-feather="menu"></i>
                    </button>
                </div>
            </div>
        </div>
    </nav>

    <!-- Articles Header -->
    <section class="bg-white py-16">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="text-center">
                <h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-4">All Articles</h1>
                <p class="text-xl text-gray-600 max-w-3xl mx-auto">Dive into our collection of thought-provoking articles about technology, design, and innovation.</p>
            </div>
        </div>
    </section>

    <!-- Articles Grid -->
    <section class="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-2 lg:grid-cols-3 gap-8">
                <!-- Article 1 -->
                <article class="bg-white rounded-xl shadow-lg overflow-hidden hover-lift">
                    <img src="http://static.photos/technology/640x360/4" alt="Web Development" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <div class="flex items-center justify-between mb-3">
                            <span class="text-primary text-sm font-semibold">Technology</span>
                            <span class="text-gray-500 text-sm">May 15, 2024</span>
                        </div>
                        <h2 class="text-xl font-bold text-gray-900 mb-3">The Future of Web Development</h2>
                        <p class="text-gray-600 mb-4">Exploring the latest trends and technologies shaping the future of web development and user experience.</p>
                        <a href="blog-post.html" class="text-primary hover:text-primary-dark font-semibold flex items-center">
                            Read Full Article
                            <i data-feather="arrow-right" class="ml-1 h-4 w-4"></i>
                        </a>
                    </div>
                </article>

                <!-- Article 2 -->
                <article class="bg-white rounded-xl shadow-lg overflow-hidden hover-lift">
                    <img src="http://static.photos/minimal/640x360/5" alt="Design Trends" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <div class="flex items-center justify-between mb-3">
                            <span class="text-secondary text-sm font-semibold">Design</span>
                            <span class="text-gray-500 text-sm">May 12, 2024</span>
                        </div>
                        <h2 class="text-xl font-bold text-gray-900 mb-3">Minimalism in Digital Design</h2>
                        <p class="text-gray-600 mb-4">How minimalism is revolutionizing user experience and interface design across digital platforms.</p>
                        <a href="blog-post.html" class="text-primary hover:text-primary-dark font-semibold flex items-center">
                            Read Full Article
                            <i data-feather="arrow-right" class="ml-1 h-4 w-4"></i>
                        </a>
                    </div>
                </article>

                <!-- Article 3 -->
                <article class="bg-white rounded-xl shadow-lg overflow-hidden hover-lift">
                    <img src="http://static.photos/abstract/640x360/6" alt="AI Revolution" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <div class="flex items-center justify-between mb-3">
                            <span class="text-primary text-sm font-semibold">AI & ML</span>
                            <span class="text-gray-500 text-sm">May 10, 2024</span>
                        </div>
                        <h2 class="text-xl font-bold text-gray-900 mb-3">AI Revolution in Creative Industries</h2>
                        <p class="text-gray-600 mb-4">How artificial intelligence is transforming creative workflows and artistic expression across various industries.</p>
                        <a href="blog-post.html" class="text-primary hover:text-primary-dark font-semibold flex items-center">
                            Read Full Article
                            <i data-feather="arrow-right" class="ml-1 h-4 w-4"></i>
                        </a>
                    </div>
                </article>

                <!-- Article 4 -->
                <article class="bg-white rounded-xl shadow-lg overflow-hidden hover-lift">
                    <img src="http://static.photos/workspace/640x360/7" alt="Remote Work" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <div class="flex items-center justify-between mb-3">
                            <span class="text-secondary text-sm font-semibold">Lifestyle</span>
                            <span class="text-gray-500 text-sm">May 8, 2024</span>
                        </div>
                        <h2 class="text-xl font-bold text-gray-900 mb-3">The Future of Remote Work</h2>
                        <p class="text-gray-600 mb-4">Analyzing how remote work is evolving and what it means for productivity, collaboration, and work-life balance.</p>
                        <a href="blog-post.html" class="text-primary hover:text-primary-dark font-semibold flex items-center">
                            Read Full Article
                            <i data-feather="arrow-right" class="ml-1 h-4 w-4"></i>
                        </a>
                    </div>
                </article>

                <!-- Article 5 -->
                <article class="bg-white rounded-xl shadow-lg overflow-hidden hover-lift">
                    <img src="http://static.photos/science/640x360/8" alt="Quantum Computing" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <div class="flex items-center justify-between mb-3">
                            <span class="text-primary text-sm font-semibold">Science</span>
                            <span class="text-gray-500 text-sm">May 5, 2024</span>
                        </div>
                        <h2 class="text-xl font-bold text-gray-900 mb-3">Quantum Computing Explained</h2>
                        <p class="text-gray-600 mb-4">A beginner-friendly guide to understanding quantum computing and its potential impact on various industries.</p>
                        <a href="blog-post.html" class="text-primary hover:text-primary-dark font-semibold flex items-center">
                            Read Full Article
                            <i data-feather="arrow-right" class="ml-1 h-4 w-4"></i>
                        </a>
                    </div>
                </article>

                <!-- Article 6 -->
                <article class="bg-white rounded-xl shadow-lg overflow-hidden hover-lift">
                    <img src="http://static.photos/gaming/640x360/9" alt="Game Development" class="w-full h-48 object-cover">
                    <div class="p-6">
                        <div class="flex items-center justify-between mb-3">
                            <span class="text-secondary text-sm font-semibold">Gaming</span>
                            <span class="text-gray-500 text-sm">May 3, 2024</span>
                        </div>
                        <h2 class="text-xl font-bold text-gray-900 mb-3">The Evolution of Game Development</h2>
                        <p class="text-gray-600 mb-4">Tracing the journey of game development from pixel art to photorealistic graphics and beyond.</p>
                        <a href="blog-post.html" class="text-primary hover:text-primary-dark font-semibold flex items-center">
                            Read Full Article
                            <i data-feather="arrow-right" class="ml-1 h-4 w-4"></i>
                        </a>
                    </div>
                </article>
            </div>

            <!-- Pagination -->
            <div class="flex justify-center mt-12 space-x-2">
                <button class="px-4 py-2 bg-primary text-white rounded-lg font-semibold">1</button>
                <button class="px-4 py-2 bg-white text-gray-700 rounded-lg font-semibold hover:bg-gray-50 transition-colors">2</button>
                <button class="px-4 py-2 bg-white text-gray-700 rounded-lg font-semibold hover:bg-gray-50 transition-colors">3</button>
                <button class="px-4 py-2 bg-white text-gray-700 rounded-lg font-semibold hover:bg-gray-50 transition-colors">
                    Next
                    <i data-feather="arrow-right" class="ml-1 h-4 w-4 inline"></i>
                </button>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <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>
                <div class="flex items-center mb-4">
                    <i data-feather="zap" class="text-primary h-6 w-6"></i>
                    <span class="ml-2 text-xl font-bold">PixelPulse</span>
                </div>
                <p class="text-gray-400">Exploring the intersection of technology, design, and creativity.</p>
            </div>
            <div>
                <h3 class="font-semibold mb-4">Quick Links</h3>
                <ul class="space-y-2 text-gray-400">
                    <li><a href="index.html" class="hover:text-white transition-colors">Home</a></li>
                    <li><a href="articles.html" class="hover:text-white transition-colors">Articles</a></li>
                    <li><a href="#" class="hover:text-white transition-colors">About</a></li>
                    <li><a href="#" class="hover:text-white transition-colors">Contact</a></li>
                </ul>
            </div>
            <div>
                <h3 class="font-semibold mb-4">Categories</h3>
                <ul class="space-y-2 text-gray-400">
                    <li><a href="#" class="hover:text-white transition-colors">Technology</a></li>
                    <li><a href="#" class="hover:text-white transition-colors">Design</a></li>
                    <li><a href="#" class="hover:text-white transition-colors">Development</a></li>
                    <li><a href="#" class="hover:text-white transition-colors">AI & ML</a></li>
                </ul>
            </div>
            <div>
                <h3 class="font-semibold mb-4">Connect</h3>
                <div class="flex space-x-4">
                    <a href="#" class="text-gray-400 hover:text-white transition-colors">
                        <i data-feather="twitter"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-white transition-colors">
                        <i data-feather="github"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-white transition-colors">
                        <i data-feather="linkedin"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-white transition-colors">
                        <i data-feather="instagram"></i>
                    </a>
                </div>
            </div>
        </div>
        <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
            <p>&copy; 2024 PixelPulse Chronicles. All rights reserved.</p>
        </div>
    </footer>

    <script>
        feather.replace();
        
        // Mobile menu toggle
        document.querySelector('.mobile-menu-button').addEventListener('click', function() {
            const menu = document.querySelector('.mobile-menu');
            if (menu.classList.contains('hidden')) {
                menu.classList.remove('hidden');
            } else {
                menu.classList.add('hidden');
            }
        });
    </script>
</body>
</html>