diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a13bbe0..3521588 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,21 +1,47 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Open_Sans } from "next/font/google"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); +const openSans = Open_Sans({ + variable: "--font-open-sans", + subsets: ["latin"], +}); export const metadata: Metadata = { - title: "مطعم النجمه والهلال", description: "أفضل تجربة إفطار مصري أصيل. مفتوح 24 ساعة" + 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, + }, }; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - -
{children} + +