initial commit

main
marszayn 2025-07-28 13:11:29 +07:00
parent 8ba2b5eb0b
commit e4ce7912ff
3 changed files with 2 additions and 28 deletions

View File

@ -149,7 +149,7 @@ document.addEventListener("DOMContentLoaded", function () {
}
}
// Ambil dari localStorage jika ada
// Ambil dari localStorage kalo ada
const savedAddress = localStorage.getItem("user_address");
if (savedAddress) {
userLocationEl.textContent = savedAddress;
@ -157,7 +157,7 @@ document.addEventListener("DOMContentLoaded", function () {
getLocationUpdate(); // Pertama kali ambil lokasi
}
// ✅ Klik untuk update lokasi
// Update Lokasi cuy
userLocationEl.addEventListener("click", function () {
getLocationUpdate();
});

View File

@ -1,26 +0,0 @@
<!-- Status Bar -->
<div class="flex justify-between items-center px-4 py-2 text-sm bg-slate-800/50 backdrop-blur-sm">
<div class="flex items-center space-x-2">
<span class="font-semibold">13:33</span>
<div class="flex space-x-1">
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 20 20">
<path d="M2 3a1 1 0 011-1h2.153a1 1 0 01.986.836l.74 4.435a1 1 0 01-.54 1.06l-1.548.773a11.037 11.037 0 006.105 6.105l.774-1.548a1 1 0 011.059-.54l4.435.74a1 1 0 01.836.986V17a1 1 0 01-1 1h-2C7.82 18 2 12.18 2 5V3z"/>
</svg>
<svg class="w-4 h-4" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M18 10c0 3.866-3.582 7-8 7a8.841 8.841 0 01-4.083-.98L2 17l1.338-3.123C2.493 12.767 2 11.434 2 10c0-3.866 3.582-7 8-7s8 3.134 8 7zM7 9H5v2h2V9zm8 0h-2v2h2V9zM9 9h2v2H9V9z" clip-rule="evenodd"/>
</svg>
</div>
</div>
<div class="flex items-center space-x-2 text-xs">
<span>4G</span>
<div class="flex space-x-1">
<div class="w-1 h-3 bg-white rounded-full"></div>
<div class="w-1 h-4 bg-white rounded-full"></div>
<div class="w-1 h-3 bg-white rounded-full"></div>
<div class="w-1 h-2 bg-white/50 rounded-full"></div>
</div>
<div class="w-6 h-3 border border-white rounded-sm">
<div class="w-4 h-full bg-green-400 rounded-sm"></div>
</div>
</div>
</div>