Abdulwasim's picture
like this complet code
06a2aed verified
Raw
History Blame Contribute Delete
4.12 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Help - Qibla Compass Wizard</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-50 min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-grow container mx-auto px-4 py-12">
<div class="bg-white rounded-xl shadow-lg p-8 max-w-4xl mx-auto">
<h1 class="text-4xl font-bold text-gray-800 mb-8">Help & Support</h1>
<div class="space-y-6">
<div class="bg-gray-50 p-5 rounded-lg">
<h2 class="text-2xl font-semibold text-gray-800 mb-3 flex items-center">
<i data-feather="compass" class="mr-2"></i>
How to Find Qibla Direction
</h2>
<ol class="list-decimal pl-5 space-y-2 text-gray-700">
<li>Click the "Find Qibla" button on the home page</li>
<li>Allow location access when prompted by your browser</li>
<li>The app will calculate and display the Qibla direction</li>
<li>The direction is shown in degrees relative to North</li>
</ol>
</div>
<div class="bg-gray-50 p-5 rounded-lg">
<h2 class="text-2xl font-semibold text-gray-800 mb-3 flex items-center">
<i data-feather="map" class="mr-2"></i>
Using the Map View
</h2>
<ul class="list-disc pl-5 space-y-2 text-gray-700">
<li>The blue marker shows your current location</li>
<li>The red line indicates the Qibla direction</li>
<li>You can zoom in/out using the map controls</li>
</ul>
</div>
<div class="bg-gray-50 p-5 rounded-lg">
<h2 class="text-2xl font-semibold text-gray-800 mb-3 flex items-center">
<i data-feather="camera" class="mr-2"></i>
AR Mode Instructions
</h2>
<ul class="list-disc pl-5 space-y-2 text-gray-700">
<li>Make sure your device has a camera</li>
<li>Grant camera access when prompted</li>
<li>Point your device towards the direction indicator</li>
<li>The arrow will show the Qibla direction</li>
</ul>
</div>
<div class="bg-blue-50 p-5 rounded-lg border border-blue-200">
<h2 class="text-2xl font-semibold text-blue-800 mb-3 flex items-center">
<i data-feather="help-circle" class="mr-2"></i>
Troubleshooting
</h2>
<div class="space-y-3">
<div>
<h3 class="font-medium text-blue-700">Location not working?</h3>
<p class="text-gray-700">Make sure location services are enabled in your device settings and browser permissions.</p>
</div>
<div>
<h3 class="font-medium text-blue-700">Inaccurate direction?</h3>
<p class="text-gray-700">Try moving to an open area away from large metal objects that might interfere with compass accuracy.</p>
</div>
</div>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script>
feather.replace();
</script>
</body>
</html>