feat(falahmobile): retheme app to premium dark spatial UI, implement waqf module, and resolve testing suite config

This commit is contained in:
FalahMobile
2026-07-08 18:07:07 +08:00
parent 3eb89a5665
commit 0cacc4fa1a
22 changed files with 693 additions and 355 deletions
+17 -8
View File
@@ -208,15 +208,24 @@ export default function ProfilePage() {
</div>
</div>
{/* ═══ Sign Out ═══ */}
{/* ═══ Sign Out / Login ═══ */}
<div className="mx-5 mb-6">
<button
onClick={handleSignOut}
className="w-full flex items-center justify-center gap-2 py-4 rounded-2xl border border-red-900/40 bg-red-950/20 active:bg-red-950/40 transition-colors"
>
<LogOut size={16} className="text-red-400" />
<span className="text-sm font-semibold text-red-400">Sign Out</span>
</button>
{!user ? (
<Link
href="/login"
className="w-full flex items-center justify-center gap-2 py-4 rounded-2xl gold-gradient text-bg-deep font-bold active:scale-[0.97] transition-all text-center"
>
Login
</Link>
) : (
<button
onClick={handleSignOut}
className="w-full flex items-center justify-center gap-2 py-4 rounded-2xl border border-red-900/40 bg-red-950/20 active:bg-red-950/40 transition-colors cursor-pointer"
>
<LogOut size={16} className="text-red-400" />
<span className="text-sm font-semibold text-red-400">Logout</span>
</button>
)}
</div>
{/* Bottom spacer */}