From a1c386bb566f2bd44b6f9307d4366f1c7e77813d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 18:06:39 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 46 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..92010a5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_Sans } 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 { DM_Sans } 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Food Fest Cafeteria - Fresh Food & Drinks in Dubai | Quick Service", + description: "Food Fest Cafeteria offers fresh tea, coffee, juices, sandwiches, burgers & shawarma in Dubai. Open 6AM-12AM daily. Quality food at affordable prices.", + keywords: "cafeteria Dubai, fresh food, coffee shop, sandwich restaurant, quick service food, affordable meals Dubai, shawarma, karak tea", + metadataBase: new URL("https://foodfestcafeteria.ae"), + alternates: { + canonical: "https://foodfestcafeteria.ae", + }, + openGraph: { + title: "Food Fest Cafeteria - Your Favorite Dubai Neighborhood Café", + description: "Fresh food, great taste, every day. Enjoy karak tea, coffee, juices, sandwiches, burgers and shawarma at Food Fest Cafeteria.", + siteName: "Food Fest Cafeteria", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/top-view-people-toasting-party_23-2148232023.jpg", + alt: "Food Fest Cafeteria - Fresh Food Daily", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Food Fest Cafeteria Dubai", + description: "Fresh food, great taste, every day. Visit us for tea, coffee, juice, sandwiches & more.", + images: ["http://img.b2bpic.net/free-photo/top-view-people-toasting-party_23-2148232023.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +63,9 @@ export default function RootLayout({ return ( - + {children}