Files
falah-mobile/src/app/layout.tsx
T

23 lines
572 B
TypeScript
Raw Normal View History

2026-06-28 04:27:21 +08:00
import type { Metadata } from 'next'
import { AuthProvider } from '@/lib/AuthContext'
import Navbar from '@/components/Navbar'
import './globals.css'
export const metadata: Metadata = {
title: 'Falah - Shariah-Compliant Digital Marketplace',
description: 'Souq, Nur AI, Forum, Wallet',
}
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" className="dark">
<body>
<AuthProvider>
<Navbar />
<main>{children}</main>
</AuthProvider>
</body>
</html>
)
}