diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3521588..8671e75 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,47 +1,21 @@ 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 ( - - - - - {children} - + + {children}