Update src/app/layout.tsx

This commit is contained in:
2026-03-03 19:24:21 +00:00
parent 078769371e
commit 1ab2e12f7e

View File

@@ -1,47 +1,20 @@
import type { Metadata } from "next";
import { Open_Sans } from "next/font/google";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { Cairo } from "next/font/google";
import "./globals.css";
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
const cairo = Cairo({ subsets: ["arabic", "latin"] });
export const metadata: Metadata = {
title: "مطعم النجمه والهلال - أفضل إفطار مصري مفتوح 24 ساعة",
description: "مطعم النجمه والهلال - أفضل تجربة إفطار مصري أصيل بمكونات طازجة. مفتوح 24 ساعة. اتصل الآن: 01148126838",
keywords: "إفطار مصري, مطعم مصري, فلافل, كشري, شكشوكة, مطعم 24 ساعة, الدسوقي",
openGraph: {
title: "مطعم النجمه والهلال - إفطار مصري مميز 24 ساعة",
description: "تمتع بأفضل الأطباق المصرية الأصيلة في مطعم النجمه والهلال. مفتوح طوال اليوم والليل",
type: "website",
siteName: "مطعم النجمه والهلال",
},
twitter: {
card: "summary_large_image",
title: "مطعم النجمه والهلال - إفطار مصري",
description: "أفضل مطعم إفطار مصري مفتوح 24 ساعة",
},
robots: {
index: true,
follow: true,
},
};
title: "مطعم النجمه والهلال", description: "أفضل مطعم للإفطار المصري الأصيل مفتوح 24 ساعة"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="ar" dir="rtl" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${openSans.variable} antialiased`}>
<Tag />
{children}
<html lang="ar" dir="rtl">
<body className={cairo.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1409,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}