File size: 32,353 Bytes
60f6a97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Quran & Salah Tracker | Divine Path</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .arabic-text {
            font-family: 'Traditional Arabic', Arial, sans-serif;
            direction: rtl;
            font-size: 1.5rem;
            line-height: 2.5rem;
        }
        body {
            background-color: #f9fafb;
        }
        .progress-ring__circle {
            transition: stroke-dashoffset 0.35s;
            transform: rotate(-90deg);
            transform-origin: 50% 50%;
        }
        .salah-time-active {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
            }
        }
    </style>
</head>
<body class="bg-gray-50 font-sans">
    <!-- Header -->
    <header class="bg-white text-gray-800 shadow-sm">
        <div class="container mx-auto px-4 py-3 flex justify-between items-center">
            <div class="flex items-center space-x-2">
                <i class="fas fa-mosque text-2xl"></i>
                <h1 class="text-xl md:text-2xl font-bold">Divine Path</h1>
            </div>
            <nav class="hidden md:flex space-x-6">
                <a href="#" class="hover:text-green-600 font-medium">Quran</a>
                <a href="#" class="hover:text-green-600 font-medium">Salah</a>
                <a href="#" class="hover:text-green-600 font-medium">Dashboard</a>
                <a href="#" class="hover:text-green-600 font-medium">Leaderboard</a>
                <a href="#" class="hover:text-green-600 font-medium">About</a>
            </nav>
            <div class="flex items-center space-x-4">
                <button class="md:hidden text-xl">
                    <i class="fas fa-bars"></i>
                </button>
                <div class="hidden md:flex items-center space-x-2 bg-green-700 px-3 py-1 rounded-full">
                    <span class="w-6 h-6 rounded-full bg-green-500 flex items-center justify-center">500</span>
                    <span>Points</span>
                </div>
                <div class="hidden md:block w-8 h-8 rounded-full bg-green-600"></div>
            </div>
        </div>
    </header>

    <!-- Mobile Menu -->
    <div class="md:hidden bg-white text-gray-800 shadow-md hidden" id="mobileMenu">
        <div class="container mx-auto px-4 py-2 flex flex-col space-y-3">
            <a href="#" class="py-2 border-b border-green-600">Quran</a>
            <a href="#" class="py-2 border-b border-green-600">Salah</a>
            <a href="#" class="py-2 border-b border-green-600">Dashboard</a>
            <a href="#" class="py-2 border-b border-green-600">Leaderboard</a>
            <a href="#" class="py-2">About</a>
        </div>
    </div>

    <!-- Main Content -->
    <main class="container mx-auto px-4 py-6">
        <!-- Hero Section -->
        <section class="bg-gradient-to-r from-green-100 to-blue-50 rounded-xl p-6 text-gray-800 border border-gray-200 mb-8">
            <div class="flex flex-col md:flex-row items-center">
                <div class="md:w-1/2 mb-6 md:mb-0">
                    <h2 class="text-2xl md:text-3xl font-bold mb-3">Enhance Your Spiritual Journey</h2>
                    <p class="mb-4">Track your Quran reading and Salah performance, earn rewards, and improve your connection with Allah.</p>
                    <div class="bg-white p-3 rounded-lg mb-4 border border-gray-200 shadow-sm">
                        <p class="font-medium">Current Prize Pool: <span class="font-bold">$1,000</span></p>
                        <p>Next winner selected from: 1,000 users</p>
                    </div>
                    <button class="bg-green-600 text-white px-4 py-2 rounded-lg font-medium hover:bg-green-700 shadow-sm">Join Now</button>
                </div>
                <div class="md:w-1/2 flex justify-center">
                    <img src="https://via.placeholder.com/400x250" alt="Quran and Prayer" class="rounded-lg shadow-lg">
                </div>
            </div>
        </section>

        <!-- Quran and Salah Sections -->
        <div class="flex flex-col lg:flex-row gap-6">
            <!-- Quran Section -->
            <section class="lg:w-2/3 bg-white rounded-xl shadow-sm overflow-hidden border border-gray-200">
                <div class="bg-green-100 text-gray-800 p-4 border-b border-gray-200">
                    <h2 class="text-xl font-bold flex items-center">
                        <i class="fas fa-book-quran mr-2"></i> Quran
                    </h2>
                </div>
                <div class="p-4">
                    <div class="flex justify-between items-center mb-4">
                        <div class="flex space-x-2">
                            <button class="bg-green-100 text-green-800 px-3 py-1 rounded">Surah</button>
                            <button class="bg-gray-100 text-gray-800 px-3 py-1 rounded">Juz</button>
                            <button class="bg-gray-100 text-gray-800 px-3 py-1 rounded">Page</button>
                        </div>
                        <div class="flex items-center">
                            <i class="fas fa-search text-gray-500 mr-2"></i>
                            <input type="text" placeholder="Search Quran..." class="border rounded px-2 py-1 text-sm">
                        </div>
                    </div>
                    
                    <div class="mb-6">
                        <div class="flex justify-between items-center mb-2">
                            <h3 class="font-bold text-lg">Surah Al-Fatiha</h3>
                            <span class="text-sm text-gray-500">1 of 114</span>
                        </div>
                        <div class="arabic-text bg-gray-50 p-4 rounded-lg mb-3">
                            بِسْمِ ٱللَّٰهِ ٱلرَّحْمَٰنِ ٱلرَّحِيمِ ﴿١﴾ ٱلْحَمْدُ لِلَّٰهِ رَبِّ ٱلْعَٰلَمِينَ ﴿٢﴾ ٱلرَّحْمَٰنِ ٱلرَّحِيمِ ﴿٣﴾ مَٰلِكِ يَوْمِ ٱلدِّينِ ﴿٤﴾ إِيَّاكَ نَعْبُدُ وَإِيَّاكَ نَسْتَعِينُ ﴿٥﴾ ٱهْدِنَا ٱلصِّرَٰطَ ٱلْمُسْتَقِيمَ ﴿٦﴾ صِرَٰطَ ٱلَّذِينَ أَنْعَمْتَ عَلَيْهِمْ غَيْرِ ٱلْمَغْضُوبِ عَلَيْهِمْ وَلَا ٱلضَّآلِّينَ ﴿٧﴾
                        </div>
                        <div class="text-gray-700 mb-4">
                            <p class="mb-2"><span class="font-semibold">Translation:</span> In the name of Allah, the Entirely Merciful, the Especially Merciful. [1] [All] praise is [due] to Allah, Lord of the worlds - [2] The Entirely Merciful, the Especially Merciful, [3] Sovereign of the Day of Recompense. [4] It is You we worship and You we ask for help. [5] Guide us to the straight path - [6] The path of those upon whom You have bestowed favor, not of those who have evoked [Your] anger or of those who are astray. [7]</p>
                        </div>
                        <div class="flex justify-between items-center">
                            <div class="flex space-x-2">
                                <button class="bg-green-100 text-green-800 px-3 py-1 rounded text-sm">
                                    <i class="fas fa-play mr-1"></i> Listen
                                </button>
                                <button class="bg-blue-100 text-blue-800 px-3 py-1 rounded text-sm">
                                    <i class="fas fa-bookmark mr-1"></i> Bookmark
                                </button>
                            </div>
                            <div class="flex items-center text-sm text-gray-500">
                                <i class="fas fa-check-circle text-green-500 mr-1"></i>
                                <span>Completed</span>
                            </div>
                        </div>
                    </div>
                    
                    <div class="border-t pt-4">
                        <h3 class="font-bold mb-3">Your Quran Progress</h3>
                        <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
                            <div class="bg-gray-50 p-3 rounded-lg text-center">
                                <div class="text-green-600 font-bold text-xl">15%</div>
                                <div class="text-sm text-gray-600">Juz Completed</div>
                            </div>
                            <div class="bg-gray-50 p-3 rounded-lg text-center">
                                <div class="text-green-600 font-bold text-xl">7</div>
                                <div class="text-sm text-gray-600">Surahs Memorized</div>
                            </div>
                            <div class="bg-gray-50 p-3 rounded-lg text-center">
                                <div class="text-green-600 font-bold text-xl">24</div>
                                <div class="text-sm text-gray-600">Days Streak</div>
                            </div>
                            <div class="bg-gray-50 p-3 rounded-lg text-center">
                                <div class="text-green-600 font-bold text-xl">350</div>
                                <div class="text-sm text-gray-600">Points Earned</div>
                            </div>
                        </div>
                    </div>
                </div>
            </section>
            
            <!-- Salah Section -->
            <section class="lg:w-1/3 bg-white rounded-xl shadow-sm overflow-hidden border border-gray-200">
                <div class="bg-blue-100 text-gray-800 p-4 border-b border-gray-200">
                    <h2 class="text-xl font-bold flex items-center">
                        <i class="fas fa-clock mr-2"></i> Prayer Times
                    </h2>
                </div>
                <div class="p-4">
                    <div class="flex justify-between items-center mb-4">
                        <div>
                            <h3 class="font-bold">Today, June 15, 2023</h3>
                            <p class="text-sm text-gray-600">12 Dhul-Qadah 1444 AH</p>
                        </div>
                        <div class="flex items-center">
                            <i class="fas fa-map-marker-alt mr-1"></i>
                            <span class="text-sm">New York, USA</span>
                        </div>
                    </div>
                    
                    <div class="space-y-3 mb-6">
                        <div class="flex items-center justify-between p-3 rounded-lg bg-blue-50 border border-blue-200 salah-time-active">
                            <div class="flex items-center">
                                <div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center mr-3">
                                    <i class="fas fa-sun text-blue-600"></i>
                                </div>
                                <div>
                                    <div class="font-medium">Fajr</div>
                                    <div class="text-xs text-gray-500">Dawn Prayer</div>
                                </div>
                            </div>
                            <div class="text-lg font-bold">4:45 AM</div>
                        </div>
                        
                        <div class="flex items-center justify-between p-3 rounded-lg bg-gray-50 border border-gray-200">
                            <div class="flex items-center">
                                <div class="w-10 h-10 rounded-full bg-gray-200 flex items-center justify-center mr-3">
                                    <i class="fas fa-sun text-yellow-500"></i>
                                </div>
                                <div>
                                    <div class="font-medium">Dhuhr</div>
                                    <div class="text-xs text-gray-500">Noon Prayer</div>
                                </div>
                            </div>
                            <div class="text-lg font-bold">1:15 PM</div>
                        </div>
                        
                        <div class="flex items-center justify-between p-3 rounded-lg bg-gray-50 border border-gray-200">
                            <div class="flex items-center">
                                <div class="w-10 h-10 rounded-full bg-gray-200 flex items-center justify-center mr-3">
                                    <i class="fas fa-cloud-sun text-orange-500"></i>
                                </div>
                                <div>
                                    <div class="font-medium">Asr</div>
                                    <div class="text-xs text-gray-500">Afternoon Prayer</div>
                                </div>
                            </div>
                            <div class="text-lg font-bold">4:45 PM</div>
                        </div>
                        
                        <div class="flex items-center justify-between p-3 rounded-lg bg-gray-50 border border-gray-200">
                            <div class="flex items-center">
                                <div class="w-10 h-10 rounded-full bg-gray-200 flex items-center justify-center mr-3">
                                    <i class="fas fa-sun text-red-500"></i>
                                </div>
                                <div>
                                    <div class="font-medium">Maghrib</div>
                                    <div class="text-xs text-gray-500">Sunset Prayer</div>
                                </div>
                            </div>
                            <div class="text-lg font-bold">7:30 PM</div>
                        </div>
                        
                        <div class="flex items-center justify-between p-3 rounded-lg bg-gray-50 border border-gray-200">
                            <div class="flex items-center">
                                <div class="w-10 h-10 rounded-full bg-gray-200 flex items-center justify-center mr-3">
                                    <i class="fas fa-moon text-indigo-500"></i>
                                </div>
                                <div>
                                    <div class="font-medium">Isha</div>
                                    <div class="text-xs text-gray-500">Night Prayer</div>
                                </div>
                            </div>
                            <div class="text-lg font-bold">9:15 PM</div>
                        </div>
                    </div>
                    
                    <div class="mb-6">
                        <h3 class="font-bold mb-3">Today's Salah Completion</h3>
                        <div class="flex justify-between items-center mb-2">
                            <div class="w-full bg-gray-200 rounded-full h-4">
                                <div class="bg-green-600 h-4 rounded-full" style="width: 20%"></div>
                            </div>
                            <span class="ml-2 text-sm font-medium">1/5</span>
                        </div>
                        <p class="text-sm text-gray-600">Complete all 5 prayers to earn 50 points</p>
                    </div>
                    
                    <div class="bg-blue-50 p-4 rounded-lg">
                        <h3 class="font-bold mb-2 flex items-center">
                            <i class="fas fa-trophy mr-2 text-yellow-500"></i> Current Leader
                        </h3>
                        <div class="flex items-center mb-2">
                            <div class="w-8 h-8 rounded-full bg-blue-200 mr-2"></div>
                            <div>
                                <div class="font-medium">Aisha Khan</div>
                                <div class="text-xs text-gray-600">4,850 points</div>
                            </div>
                        </div>
                        <p class="text-sm">Next drawing in: <span class="font-medium">3 days</span></p>
                    </div>
                </div>
            </section>
        </div>
        
        <!-- Dashboard Section -->
        <section class="mt-8 bg-white rounded-xl shadow-sm overflow-hidden border border-gray-200">
            <div class="bg-purple-100 text-gray-800 p-4 border-b border-gray-200">
                <h2 class="text-xl font-bold flex items-center">
                    <i class="fas fa-chart-line mr-2"></i> Your Spiritual Dashboard
                </h2>
            </div>
            <div class="p-4">
                <div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-6">
                    <!-- Performance Summary -->
                    <div class="bg-gray-50 p-4 rounded-lg">
                        <h3 class="font-bold mb-3 flex items-center">
                            <i class="fas fa-star mr-2 text-yellow-500"></i> Performance Summary
                        </h3>
                        <div class="space-y-3">
                            <div>
                                <div class="flex justify-between mb-1">
                                    <span class="text-sm font-medium">Quran Reading</span>
                                    <span class="text-sm font-medium">75%</span>
                                </div>
                                <div class="w-full bg-gray-200 rounded-full h-2">
                                    <div class="bg-green-500 h-2 rounded-full" style="width: 75%"></div>
                                </div>
                            </div>
                            <div>
                                <div class="flex justify-between mb-1">
                                    <span class="text-sm font-medium">Salah Completion</span>
                                    <span class="text-sm font-medium">60%</span>
                                </div>
                                <div class="w-full bg-gray-200 rounded-full h-2">
                                    <div class="bg-blue-500 h-2 rounded-full" style="width: 60%"></div>
                                </div>
                            </div>
                            <div>
                                <div class="flex justify-between mb-1">
                                    <span class="text-sm font-medium">Consistency</span>
                                    <span class="text-sm font-medium">85%</span>
                                </div>
                                <div class="w-full bg-gray-200 rounded-full h-2">
                                    <div class="bg-purple-500 h-2 rounded-full" style="width: 85%"></div>
                                </div>
                            </div>
                        </div>
                    </div>
                    
                    <!-- Improvement Tips -->
                    <div class="bg-gray-50 p-4 rounded-lg">
                        <h3 class="font-bold mb-3 flex items-center">
                            <i class="fas fa-lightbulb mr-2 text-green-500"></i> Improvement Tips
                        </h3>
                        <ul class="space-y-2 text-sm">
                            <li class="flex items-start">
                                <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
                                <span>You're doing great with Fajr prayers (completed 90% this month)</span>
                            </li>
                            <li class="flex items-start">
                                <i class="fas fa-exclamation-circle text-yellow-500 mt-1 mr-2"></i>
                                <span>Try to improve Asr prayers (only 40% completion this month)</span>
                            </li>
                            <li class="flex items-start">
                                <i class="fas fa-book-open text-blue-500 mt-1 mr-2"></i>
                                <span>Consider memorizing 1 new ayah daily from Surah Al-Baqarah</span>
                            </li>
                            <li class="flex items-start">
                                <i class="fas fa-clock text-purple-500 mt-1 mr-2"></i>
                                <span>Your best time for Quran is between 7-9 PM (75% of reading happens then)</span>
                            </li>
                        </ul>
                    </div>
                    
                    <!-- Weekly Progress -->
                    <div class="bg-gray-50 p-4 rounded-lg">
                        <h3 class="font-bold mb-3 flex items-center">
                            <i class="fas fa-calendar-alt mr-2 text-red-500"></i> Weekly Progress
                        </h3>
                        <div class="flex justify-between text-xs text-center mb-2">
                            <div>Sun</div>
                            <div>Mon</div>
                            <div>Tue</div>
                            <div>Wed</div>
                            <div>Thu</div>
                            <div>Fri</div>
                            <div>Sat</div>
                        </div>
                        <div class="flex justify-between h-24">
                            <div class="w-1/7 flex flex-col items-center">
                                <div class="w-3/4 bg-gray-300 rounded-t-sm" style="height: 30%"></div>
                                <div class="text-xs mt-1">2/5</div>
                            </div>
                            <div class="w-1/7 flex flex-col items-center">
                                <div class="w-3/4 bg-blue-300 rounded-t-sm" style="height: 60%"></div>
                                <div class="text-xs mt-1">3/5</div>
                            </div>
                            <div class="w-1/7 flex flex-col items-center">
                                <div class="w-3/4 bg-green-300 rounded-t-sm" style="height: 90%"></div>
                                <div class="text-xs mt-1">5/5</div>
                            </div>
                            <div class="w-1/7 flex flex-col items-center">
                                <div class="w-3/4 bg-green-300 rounded-t-sm" style="height: 80%"></div>
                                <div class="text-xs mt-1">4/5</div>
                            </div>
                            <div class="w-1/7 flex flex-col items-center">
                                <div class="w-3/4 bg-blue-300 rounded-t-sm" style="height: 50%"></div>
                                <div class="text-xs mt-1">3/5</div>
                            </div>
                            <div class="w-1/7 flex flex-col items-center">
                                <div class="w-3/4 bg-green-300 rounded-t-sm" style="height: 100%"></div>
                                <div class="text-xs mt-1">5/5</div>
                            </div>
                            <div class="w-1/7 flex flex-col items-center">
                                <div class="w-3/4 bg-gray-300 rounded-t-sm" style="height: 20%"></div>
                                <div class="text-xs mt-1">1/5</div>
                            </div>
                        </div>
                        <div class="mt-2 text-xs text-gray-600 text-center">Salah completion this week: 71%</div>
                    </div>
                </div>
                
                <!-- Recent Activity -->
                <div>
                    <h3 class="font-bold mb-3">Recent Activity</h3>
                    <div class="overflow-x-auto">
                        <table class="min-w-full bg-white">
                            <thead class="bg-gray-100">
                                <tr>
                                    <th class="py-2 px-4 text-left">Date</th>
                                    <th class="py-2 px-4 text-left">Activity</th>
                                    <th class="py-2 px-4 text-left">Points</th>
                                    <th class="py-2 px-4 text-left">Status</th>
                                </tr>
                            </thead>
                            <tbody class="divide-y divide-gray-200">
                                <tr>
                                    <td class="py-2 px-4">Today, 4:45 AM</td>
                                    <td class="py-2 px-4">Fajr Prayer</td>
                                    <td class="py-2 px-4">+10</td>
                                    <td class="py-2 px-4"><span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs">Completed</span></td>
                                </tr>
                                <tr>
                                    <td class="py-2 px-4">Yesterday, 9:30 PM</td>
                                    <td class="py-2 px-4">Quran Reading (20 mins)</td>
                                    <td class="py-2 px-4">+15</td>
                                    <td class="py-2 px-4"><span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs">Completed</span></td>
                                </tr>
                                <tr>
                                    <td class="py-2 px-4">Yesterday, 7:45 PM</td>
                                    <td class="py-2 px-4">Maghrib Prayer</td>
                                    <td class="py-2 px-4">+10</td>
                                    <td class="py-2 px-4"><span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs">Completed</span></td>
                                </tr>
                                <tr>
                                    <td class="py-2 px-4">Yesterday, 4:50 PM</td>
                                    <td class="py-2 px-4">Asr Prayer</td>
                                    <td class="py-2 px-4"><span class="text-gray-500">Missed</span></td>
                                    <td class="py-2 px-4"><span class="bg-red-100 text-red-800 px-2 py-1 rounded-full text-xs">Missed</span></td>
                                </tr>
                                <tr>
                                    <td class="py-2 px-4">Yesterday, 1:20 PM</td>
                                    <td class="py-2 px-4">Dhuhr Prayer</td>
                                    <td class="py-2 px-4">+10</td>
                                    <td class="py-2 px-4"><span class="bg-green-100 text-green-800 px-2 py-1 rounded-full text-xs">Completed</span></td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                </div>
            </div>
        </section>
    </main>
    
    <!-- Footer -->
    <footer class="bg-gray-100 text-gray-800 mt-12 border-t border-gray-200">
        <div class="container mx-auto px-4 py-8">
            <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
                <div>
                    <h3 class="text-lg font-bold mb-4">Divine Path</h3>
                    <p class="text-gray-400">Enhancing your spiritual journey through Quran, Salah, and community.</p>
                </div>
                <div>
                    <h3 class="text-lg font-bold mb-4">Quick Links</h3>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">Quran</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Prayer Times</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Dashboard</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Leaderboard</a></li>
                    </ul>
                </div>
                <div>
                    <h3 class="text-lg font-bold mb-4">Resources</h3>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-gray-400 hover:text-white">Tafsir</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Hadith</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Dua Collection</a></li>
                        <li><a href="#" class="text-gray-400 hover:text-white">Islamic Calendar</a></li>
                    </ul>
                </div>
                <div>
                    <h3 class="text-lg font-bold mb-4">Connect</h3>
                    <div class="flex space-x-4 mb-4">
                        <a href="#" class="w-8 h-8 rounded-full bg-white flex items-center justify-center hover:bg-gray-100 border border-gray-300">
                            <i class="fab fa-facebook-f"></i>
                        </a>
                        <a href="#" class="w-8 h-8 rounded-full bg-gray-700 flex items-center justify-center hover:bg-gray-600">
                            <i class="fab fa-twitter"></i>
                        </a>
                        <a href="#" class="w-8 h-8 rounded-full bg-gray-700 flex items-center justify-center hover:bg-gray-600">
                            <i class="fab fa-instagram"></i>
                        </a>
                        <a href="#" class="w-8 h-8 rounded-full bg-gray-700 flex items-center justify-center hover:bg-gray-600">
                            <i class="fab fa-youtube"></i>
                        </a>
                    </div>
                    <p class="text-gray-400">Subscribe to our newsletter</p>
                    <div class="mt-2 flex">
                        <input type="email" placeholder="Your email" class="bg-gray-700 text-white px-3 py-2 rounded-l focus:outline-none w-full">
                        <button class="bg-green-600 hover:bg-green-700 px-3 py-2 rounded-r">
                            <i class="fas fa-paper-plane"></i>
                        </button>
                    </div>
                </div>
            </div>
            <div class="border-t border-gray-700 mt-8 pt-6 text-center text-gray-400">
                <p>&copy; 2023 Divine Path. All rights reserved.</p>
            </div>
        </div>
    </footer>

    <script>
        // Mobile menu toggle
        document.querySelector('button.md\\:hidden').addEventListener('click', function() {
            const menu = document.getElementById('mobileMenu');
            menu.classList.toggle('hidden');
        });

        // Simulate active prayer time
        function updateActivePrayer() {
            const prayers = document.querySelectorAll('.salah-time-active');
            prayers.forEach(prayer => {
                prayer.classList.remove('salah-time-active');
            });
            
            // For demo purposes, just activate the next prayer
            const prayerElements = document.querySelectorAll('[class*="rounded-lg bg-gray-50"]');
            if (prayerElements.length > 1) {
                prayerElements[1].classList.add('salah-time-active');
            }
        }

        // Update every minute (for demo, we'll just call it once)
        updateActivePrayer();
    </script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=superdata/divine-path" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>