From bba01e0ee7f1304b749917426500732ce50e6095 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 23:30:13 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a088e29..9d77d79 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,63 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Source_Sans_3 } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "كافيه جدو - Your 24-Hour Neighborhood Cafe in Nasr City", + description: "Authentic Egyptian cafe open 24/7. Enjoy coffee, shisha, gaming, fresh food & street snacks in a warm, welcoming atmosphere. Call 010 14380325 or visit us now.", + keywords: "cafe Cairo, shisha lounge, 24 hour cafe, Egyptian coffee, Nasr City, street food", + metadataBase: new URL("https://cafeegrandpa.com"), + alternates: { + canonical: "https://cafeegrandpa.com", + }, + openGraph: { + title: "كافيه جدو - Grandpa's Cafe", + description: "Your neighborhood cafe, open all night. Come as a stranger. Leave as a regular.", + url: "https://cafeegrandpa.com", + siteName: "كافيه جدو", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/front-view-woman-restaurant_23-2150491833.jpg", + alt: "Grandpa's Cafe cozy interior", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "كافيه جدو - Your 24-Hour Neighborhood Cafe", + description: "Open all night. Coffee, shisha, gaming, food. Come as a stranger. Leave as a regular.", + images: [ + "http://img.b2bpic.net/free-photo/front-view-woman-restaurant_23-2150491833.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +66,9 @@ export default function RootLayout({ return ( - + {children}