File size: 31,009 Bytes
879eb87
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Features - MeggDev Studio</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>
    <style>
        .gradient-text {
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            background-image: linear-gradient(90deg, #8b5cf6, #ec4899);
        }
        .feature-icon {
            transition: all 0.3s ease;
        }
        .feature-card:hover .feature-icon {
            transform: rotate(10deg) scale(1.1);
        }
    </style>
</head>
<body class="bg-gray-900 text-gray-100">
    <!-- Navigation -->
    <nav class="bg-gray-900 bg-opacity-90 backdrop-filter backdrop-blur-lg border-b border-gray-800 sticky top-0 z-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex items-center justify-between h-16">
                <div class="flex items-center">
                    <div class="flex-shrink-0">
                        <a href="index.html" class="text-2xl font-bold gradient-text">MeggDev</a>
                    </div>
                    <div class="hidden md:block ml-10">
                        <div class="flex items-baseline space-x-4">
                            <a href="index.html" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Home</a>
                            <a href="features.html" class="px-3 py-2 rounded-md text-sm font-medium text-white bg-purple-600">Features</a>
                            <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Projects</a>
                            <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Pricing</a>
                            <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-300 hover:text-white">Contact</a>
                        </div>
                    </div>
                </div>
                <div class="hidden md:block">
                    <a href="#" class="px-4 py-2 rounded-md text-sm font-medium text-white bg-gradient-to-r from-purple-500 to-pink-500 hover:from-purple-600 hover:to-pink-600">
                        Get Started
                    </a>
                </div>
                <div class="-mr-2 flex md:hidden">
                    <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none">
                        <span class="sr-only">Open main menu</span>
                        <i data-feather="menu"></i>
                    </button>
                </div>
            </div>
        </div>
    </nav>

    <!-- Hero -->
    <div class="relative bg-gradient-to-br from-purple-900 to-gray-900 overflow-hidden">
        <div class="max-w-7xl mx-auto py-24 px-4 sm:py-32 sm:px-6 lg:px-8 relative z-10">
            <div class="text-center">
                <h1 class="text-4xl font-extrabold tracking-tight text-white sm:text-5xl lg:text-6xl">
                    Powerful Features for <span class="gradient-text">Next-Level Development</span>
                </h1>
                <p class="mt-6 text-xl max-w-3xl mx-auto text-purple-100">
                    Our AI-powered development studio comes packed with everything you need to build incredible applications across all platforms.
                </p>
            </div>
        </div>
    </div>

    <!-- Main Features -->
    <div class="py-16 bg-gray-900">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="lg:text-center">
                <h2 class="text-base text-purple-400 font-semibold tracking-wide uppercase">Development</h2>
                <p class="mt-2 text-3xl font-extrabold text-white sm:text-4xl">
                    Everything You Need in One Place
                </p>
                <p class="mt-4 max-w-2xl text-xl text-gray-300 lg:mx-auto">
                    From simple websites to complex operating systems - we've got you covered.
                </p>
            </div>

            <div class="mt-20">
                <div class="space-y-16">
                    <!-- Platform Section -->
                    <div class="feature-card">
                        <div class="md:flex">
                            <div class="md:flex-shrink-0">
                                <div class="flex items-center justify-center h-16 w-16 rounded-md bg-purple-500 text-white feature-icon">
                                    <i data-feather="layers" class="h-8 w-8"></i>
                                </div>
                            </div>
                            <div class="mt-4 md:mt-0 md:ml-6">
                                <h3 class="text-xl font-medium text-white">Multi-Platform Support</h3>
                                <div class="mt-4 grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-4">
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-purple-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Windows</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-purple-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">macOS</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-purple-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Linux</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-purple-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">iOS</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-purple-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Android</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-purple-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">iPadOS</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-purple-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Web</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-purple-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Console</div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>

                    <!-- Software Section -->
                    <div class="feature-card">
                        <div class="md:flex">
                            <div class="md:flex-shrink-0">
                                <div class="flex items-center justify-center h-16 w-16 rounded-md bg-pink-500 text-white feature-icon">
                                    <i data-feather="cpu" class="h-8 w-8"></i>
                                </div>
                            </div>
                            <div class="mt-4 md:mt-0 md:ml-6">
                                <h3 class="text-xl font-medium text-white">Software Development</h3>
                                <div class="mt-4 grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-4">
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-pink-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Editing Software</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-pink-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">3D Modeling</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-pink-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Music Apps</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-pink-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Digital Stores</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-pink-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Productivity Tools</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-pink-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Operating Systems</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-pink-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Database Systems</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-pink-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Networking Tools</div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>

                    <!-- Game Development Section -->
                    <div class="feature-card">
                        <div class="md:flex">
                            <div class="md:flex-shrink-0">
                                <div class="flex items-center justify-center h-16 w-16 rounded-md bg-blue-500 text-white feature-icon">
                                    <i data-feather="gamepad" class="h-8 w-8"></i>
                                </div>
                            </div>
                            <div class="mt-4 md:mt-0 md:ml-6">
                                <h3 class="text-xl font-medium text-white">Game Development</h3>
                                <div class="mt-4 grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-4">
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-blue-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Indie Games</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-blue-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">AAA Titles</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-blue-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">2D Games</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-blue-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">3D Games</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-blue-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">VR/AR Games</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-blue-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Mobile Games</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-blue-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Classic Remakes</div>
                                    </div>
                                    <div class="flex items-center">
                                        <div class="flex-shrink-0 h-5 w-5 text-blue-400">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2 text-sm text-gray-300">Online Multiplayer</div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>

                    <!-- AI Features -->
                    <div class="feature-card">
                        <div class="md:flex">
                            <div class="md:flex-shrink-0">
                                <div class="flex items-center justify-center h-16 w-16 rounded-md bg-green-500 text-white feature-icon">
                                    <i data-feather="zap" class="h-8 w-8"></i>
                                </div>
                            </div>
                            <div class="mt-4 md:mt-0 md:ml-6">
                                <h3 class="text-xl font-medium text-white">Advanced AI Capabilities</h3>
                                <div class="mt-4 grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3">
                                    <div class="flex items-start">
                                        <div class="flex-shrink-0 h-5 w-5 text-green-400 mt-1">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2">
                                            <p class="text-sm font-medium text-gray-300">Claude 4.1 Opus AI</p>
                                            <p class="text-xs text-gray-400">State-of-the-art AI with 99.99% accurate code generation</p>
                                        </div>
                                    </div>
                                    <div class="flex items-start">
                                        <div class="flex-shrink-0 h-5 w-5 text-green-400 mt-1">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2">
                                            <p class="text-sm font-medium text-gray-300">Figma to Code</p>
                                            <p class="text-xs text-gray-400">Convert design mockups to production-ready code instantly</p>
                                        </div>
                                    </div>
                                    <div class="flex items-start">
                                        <div class="flex-shrink-0 h-5 w-5 text-green-400 mt-1">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2">
                                            <p class="text-sm font-medium text-gray-300">Auto Debugging</p>
                                            <p class="text-xs text-gray-400">AI detects and fixes bugs in your code automatically</p>
                                        </div>
                                    </div>
                                    <div class="flex items-start">
                                        <div class="flex-shrink-0 h-5 w-5 text-green-400 mt-1">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2">
                                            <p class="text-sm font-medium text-gray-300">Database Design</p>
                                            <p class="text-xs text-gray-400">AI generates optimized database schemas based on requirements</p>
                                        </div>
                                    </div>
                                    <div class="flex items-start">
                                        <div class="flex-shrink-0 h-5 w-5 text-green-400 mt-1">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2">
                                            <p class="text-sm font-medium text-gray-300">API Generation</p>
                                            <p class="text-xs text-gray-400">Automatically creates RESTful APIs with documentation</p>
                                        </div>
                                    </div>
                                    <div class="flex items-start">
                                        <div class="flex-shrink-0 h-5 w-5 text-green-400 mt-1">
                                            <i data-feather="check-circle"></i>
                                        </div>
                                        <div class="ml-2">
                                            <p class="text-sm font-medium text-gray-300">Natural Language Processing</p>
                                            <p class="text-xs text-gray-400">Describe what you want in plain English and get working code</p>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>

                    <!-- Work Modes -->
                    <div class="feature-card">
                        <div class="md:flex">
                            <div class="md:flex-shrink-0">
                                <div class="flex items-center justify-center h-16 w-16 rounded-md bg-yellow-500 text-white feature-icon">
                                    <i data-feather="cloud" class="h-8 w-8"></i>
                                </div>
                            </div>
                            <div class="mt-4 md:mt-0 md:ml-6">
                                <h3 class="text-xl font-medium text-white">Flexible Work Modes</h3>
                                <div class="mt-4 grid grid-cols-1 gap-4 sm:grid-cols-2">
                                    <div class="bg-gray-800 p-6 rounded-lg">
                                        <div class="flex items-center">
                                            <div class="flex-shrink-0 h-10 w-10 rounded-full bg-purple-500 flex items-center justify-center">
                                                <i data-feather="monitor" class="h-5 w-5 text-white"></i>
                                            </div>
                                            <div class="ml-4">
                                                <h4 class="text-lg font-medium text-white">Online Cloud Studio</h4>
                                                <p class="mt-1 text-sm text-gray-300">Work from any device at www.MeggDev.new with full capabilities</p>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="bg-gray-800 p-6 rounded-lg">
                                        <div class="flex items-center">
                                            <div class="flex-shrink-0 h-10 w-10 rounded-full bg-blue-500 flex items-center justify-center">
                                                <i data-feather="hard-drive" class="h-5 w-5 text-white"></i>
                                            </div>
                                            <div class="ml-4">
                                                <h4 class="text-lg font-medium text-white">Offline Desktop App</h4>
                                                <p class="mt-1 text-sm text-gray-300">Download and work offline on Windows or Linux with full features</p>
                                            </div>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <!-- CTA Section -->
    <div class="bg-gradient-to-r from-purple-600 to-pink-600">
        <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8">
            <div class="text-center">
                <h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl">
                    <span class="block">Ready to experience the future of development?</span>
                </h2>
                <p class="mt-4 text-lg leading-6 text-purple-100">
                    Join thousands of developers building incredible projects with MeggDev Studio.
                </p>
                <div class="mt-8 flex justify-center">
                    <div class="inline-flex rounded-md shadow">
                        <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-purple-600 bg-white hover:bg-gray-50">
                            Get Started for Free
                        </a>
                    </div>
                    <div class="ml-3 inline-flex">
                        <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-purple-700 bg-opacity-60 hover:bg-opacity-70">
                            Contact Sales
                        </a>
                    </div>
                </div>
            </div>
        </div>
    </div>

    <!-- Footer -->
    <footer class="bg-gray-900">
        <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8">
            <div class="grid grid-cols-2 gap-8 md:grid-cols-4">
                <div>
                    <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Products</h3>
                    <div class="mt-4 space-y-4">
                        <a href="#" class="text-base text-gray-300 hover:text-white">Web Apps</a>
                        <a href="#" class="text-base text-gray-300 hover:text-white">Mobile Apps</a>
                        <a href="#" class="text-base text-gray-300 hover:text-white">Games</a>
                        <a href="#" class="text-base text-gray-300 hover:text-white">Software</a>
                    </div>
                </div>
                <div>
                    <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Resources</h3>
                    <div class="mt-4 space-y-4">
                        <a href="#" class="text-base text-gray-300 hover:text-white">Documentation</a>
                        <a href="#" class="text-base text-gray-300 hover:text-white">API Reference</a>
                        <a href="#" class="text-base text-gray-300 hover:text-white">Tutorials</a>
                        <a href="#" class="text-base text-gray-300 hover:text-white">Community</a>
                    </div>
                </div>
                <div>
                    <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Company</h3>
                    <div class="mt-4 space-y-4">
                        <a href="#" class="text-base text-gray-300 hover:text-white">About</a>
                        <a href="#" class="text-base text-gray-300 hover:text-white">Blog</a>
                        <a href="#" class="text-base text-gray-300 hover:text-white">Careers</a>
                        <a href="#" class="text-base text-gray-300 hover:text-white">Press</a>
                    </div>
                </div>
                <div>
                    <h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Connect</h3>
                    <div class="mt-4 space-y-4">
                        <a href="#" class="text-base text-gray-300 hover:text-white">Twitter</a>
                        <a href="#" class="text-base text-gray-300 hover:text-white">GitHub</a>
                        <a href="#" class="text-base text-gray-300 hover:text-white">Discord</a>
                        <a href="#" class="text-base text-gray-300 hover:text-white">Email</a>
                    </div>
                </div>
            </div>
            <div class="mt-12 border-t border-gray-700 pt-8 flex flex-col md:flex-row justify-between">
                <p class="text-base text-gray-400">
                    &copy; 2023 MeggDev Studio. All rights reserved.
                </p>
                <div class="mt-4 md:mt-0 flex space-x-6">
                    <a href="#" class="text-gray-400 hover:text-white">
                        <i data-feather="twitter"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-white">
                        <i data-feather="github"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-white">
                        <i data-feather="linkedin"></i>
                    </a>
                    <a href="#" class="text-gray-400 hover:text-white">
                        <i data-feather="youtube"></i>
                    </a>
                </div>
            </div>
        </div>
    </footer>

    <script>
        feather.replace();
        
        // Animate feature cards on scroll
        document.addEventListener('DOMContentLoaded', function() {
            const observer = new IntersectionObserver((entries) => {
                entries.forEach(entry => {
                    if (entry.isIntersecting) {
                        entry.target.classList.add('animate-fadeInUp');
                    }
                });
            }, {
                threshold: 0.1
            });

            document.querySelectorAll('.feature-card').forEach(card => {
                observer.observe(card);
            });
        });
    </script>
</body>
</html>