| import React from 'react'; | |
| export const metadata = { | |
| title: 'المكتبة المريدية العالمية', | |
| description: 'منصة رقمية للتراث المريدي', | |
| } | |
| export default function RootLayout({ | |
| children, | |
| }: { | |
| children: React.ReactNode | |
| }) { | |
| return ( | |
| <html lang="ar"> | |
| <body>{children}</body> | |
| </html> | |
| ) | |
| } |