-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
65 lines (54 loc) · 2.27 KB
/
Copy pathabout.html
File metadata and controls
65 lines (54 loc) · 2.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>About - Al-Haqq</title>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Font -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
}
.glass {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
</style>
</head>
<body class="bg-black text-gray-100">
<!-- Back Button -->
<div class="fixed top-4 left-4 z-50">
<a href="index.html" class="inline-flex items-center px-4 py-2 bg-white hover:bg-gray-100 text-black rounded-lg transition-colors duration-200">
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7"></path>
</svg>
Back
</a>
</div>
<!-- Hero -->
<section class="min-h-[50vh] flex items-center justify-center bg-gradient-to-br from-black via-gray-900 to-gray-800 px-6">
<div class="text-center max-w-3xl">
<h1 class="text-5xl font-extrabold text-white mb-4">About Al-Haqq</h1>
</div>
</section>
<!-- Mission -->
<section class="py-20 bg-gradient-to-tr from-gray-900 to-black px-6">
<div class="max-w-4xl mx-auto text-center">
<h2 class="text-3xl font-bold text-white mb-6">Our Mission</h2>
<p class="text-gray-400 text-lg leading-relaxed">
Al-Haqq was created with a single purpose: to provide a peaceful, distraction-free space for reading the Holy Quran with proper Tajweed.
Every feature — from color-coded Tajweed rules to an ad-free interface — is designed to help readers focus on the words of Allah without interruptions.
Whether you’re reciting for study, reflection, or memorization, Al-Haqq offers a clean and calm environment for your journey.
</p>
</div>
</section>
<!-- Footer -->
<footer class="py-6 text-center text-gray-500 text-sm bg-black border-t border-gray-800">
© 2025 Al-Haqq. All rights reserved.
</footer>
</body>
</html>