Manara / src /app /layout.tsx
Kebe77's picture
Create src/app/layout.tsx
5407e9a verified
Raw
History Blame Contribute Delete
350 Bytes
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>
)
}