هذا الالتزام موجود في:
Omar Ahmed
2025-10-01 01:10:54 +03:00
التزام 89b0955c24
16 ملفات معدلة مع 1768 إضافات و0 حذوفات

29
app/layout.js Normal file
عرض الملف

@@ -0,0 +1,29 @@
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}