Block 8 complete: streaks, notifications, referrals, premium identity, gamification

This commit is contained in:
root
2026-06-15 10:32:10 +02:00
parent 6423430275
commit 5e73d1d7ad
24 changed files with 1565 additions and 38 deletions
+7 -1
View File
@@ -2,6 +2,7 @@ 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",
@@ -27,7 +28,12 @@ export default function RootLayout({
</head>
<body>
<AuthProvider>
<main>{children}</main>
<div className="relative">
<div className="absolute top-4 right-4 z-40">
<NotificationBell />
</div>
<main>{children}</main>
</div>
<BottomNav />
</AuthProvider>
</body>