import type { Metadata } from "next"; import "./globals.css"; import { AuthProvider } from "@/lib/AuthContext"; import BottomNav from "@/components/BottomNav"; import NotificationBell from "@/components/NotificationBell"; export const metadata: Metadata = { title: "Falah — Islamic Lifestyle", description: "Nur AI coaching, Halal marketplace, community & wallet", viewport: "width=device-width, initial-scale=1, viewport-fit=cover", themeColor: "#0a0a0f", appleWebApp: { capable: true, statusBarStyle: "black-translucent" }, }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children}
); }