Update src/app/layout.tsx

This commit is contained in:
2026-03-21 23:30:13 +00:00
parent 010ff72a6f
commit bba01e0ee7

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}