+
{c.status === 'pending'
- ?
+ ?
: c.status === 'approved'
- ?
- :
+ ?
+ :
}
-
{c.amountFlh.toLocaleString()} FLH
-
ยฃ{c.fiatAmount.toFixed(2)} GBP
+
{c.amountFlh.toLocaleString()} FLH
+
ยฃ{c.fiatAmount.toFixed(2)} GBP
{c.status}
))}
@@ -144,7 +144,7 @@ export default function WalletPage() {
{/* Toast */}
{toast && (
-
+
{toast}
)}
diff --git a/src/components/BottomNav.tsx b/src/components/BottomNav.tsx
index 3ab89e2..0c35fd5 100644
--- a/src/components/BottomNav.tsx
+++ b/src/components/BottomNav.tsx
@@ -2,27 +2,47 @@
import Link from 'next/link'
import { usePathname } from 'next/navigation'
-import { Bot, ShoppingBag, Moon, User, Repeat2 } from 'lucide-react'
+import { Home, Moon, Bot, Repeat2, User } from 'lucide-react'
const tabs = [
- { href: '/nur', icon: Bot, label: 'Nur' },
- { href: '/prayer', icon: Moon, label: 'Prayer' },
- { href: '/dhikr', icon: Repeat2, label: 'Dhikr' },
- { href: '/souq', icon: ShoppingBag, label: 'Souq' },
- { href: '/profile', icon: User, label: 'Profile' },
+ { href: '/home', icon: Home, label: 'Home' },
+ { href: '/prayer', icon: Moon, label: 'Prayer' },
+ { href: '/nur', icon: Bot, label: 'Nur', center: true },
+ { href: '/dhikr', icon: Repeat2, label: 'Dhikr' },
+ { href: '/profile',icon: User, label: 'Profile' },
]
export default function BottomNav() {
const pathname = usePathname()
-
if (pathname === '/login' || pathname === '/register') return null
return (
-