feat(falahmobile): retheme app to premium dark spatial UI, implement waqf module, and resolve testing suite config
This commit is contained in:
@@ -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 */}
|
||||
|
||||
Reference in New Issue
Block a user