Files
falah-mobile/src/app/store/loading.tsx
T
hermes 6c07dcd098
Deploy Staging / build (push) Failing after 9m32s
feat: Phase 1 WP integration — API proxy, Store, Freebies, Blog, Tools pages
- Add WP REST API proxy (/api/wp/[...path])
- Add Store page ( from Gumroad/Stripe)
- Add Freebies page (WP content via REST API)
- Add Blog page (WP posts via REST API)
- Add Tools page (index of Islamic tools)
- Add public nav entries in BottomNav
- No WP modifications — all server-side

Docs: https://git.falahos.my/falah-os/war-room/wiki/UI-UX-Audit-mobile.falahos.my
2026-07-09 18:41:47 +02:00

8 lines
251 B
TypeScript

export default function Loading() {
return (
<div className="min-h-dvh bg-[#0a0a0f] flex items-center justify-center">
<div className="w-8 h-8 rounded-full border-2 border-[#D4AF37]/30 border-t-[#D4AF37] animate-spin" />
</div>
);
}