From 63c13ddfcdd3adc86c9fae90422438fb446c373f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Mar 2026 03:38:41 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 2bbf1cd..eaa5ea2 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -69,7 +69,7 @@ export default function AboutPage() { description: "Our team treats every guest like family, creating a welcoming atmosphere for all.", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/cheesecake-slice-with-berry-sauce-top_114579-2551.jpg" + imageSrc="http://img.b2bpic.net/free-photo/cheesecake-slice-with-berry-sauce-top_114579-2551.jpg?_wi=3" imageAlt="Fairmont Cafe Interior Ambiance" mediaAnimation="slide-up" textboxLayout="default" -- 2.49.1 From c2ab5497003fda4410a99bb61a4376784d92985e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Mar 2026 03:38:41 +0000 Subject: [PATCH 2/6] Update src/app/catering/page.tsx --- src/app/catering/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/catering/page.tsx b/src/app/catering/page.tsx index 8ee1ede..e0c6ac2 100644 --- a/src/app/catering/page.tsx +++ b/src/app/catering/page.tsx @@ -76,7 +76,7 @@ export default function CateringPage() { icon: MapPin, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/crackers-served-cream-with-chocolate_1304-4020.jpg" + imageSrc="http://img.b2bpic.net/free-photo/crackers-served-cream-with-chocolate_1304-4020.jpg?_wi=2" imageAlt="Premium Catering Event Setup" mediaAnimation="slide-up" textboxLayout="default" @@ -104,42 +104,42 @@ export default function CateringPage() { id: "starter", name: "Starter Package", price: "AED 450+", - imageSrc: "http://img.b2bpic.net/free-photo/tasty-dessert-chocolate-cake-concept-delicious-dessert_185193-108427.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/tasty-dessert-chocolate-cake-concept-delicious-dessert_185193-108427.jpg?_wi=4", imageAlt: "Starter Catering Package", }, { id: "premium", name: "Premium Package", price: "AED 850+", - imageSrc: "http://img.b2bpic.net/free-photo/side-view-from-afar-chocolate-cookies-bowls-chocolate-strawberries-chocolate-cream-plate-cookies-with-strawberries-table_140725-110613.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/side-view-from-afar-chocolate-cookies-bowls-chocolate-strawberries-chocolate-cream-plate-cookies-with-strawberries-table_140725-110613.jpg?_wi=4", imageAlt: "Premium Catering Package", }, { id: "luxury", name: "Luxury Package", price: "AED 1500+", - imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-nougats-plate-still-life_23-2149646314.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-nougats-plate-still-life_23-2149646314.jpg?_wi=4", imageAlt: "Luxury Catering Package", }, { id: "custom", name: "Custom Experience", price: "Tailored Pricing", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-creamy-cake-with-fresh-fruits-light-table-biscuit-dessert-cake-sweet_140725-81786.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-creamy-cake-with-fresh-fruits-light-table-biscuit-dessert-cake-sweet_140725-81786.jpg?_wi=4", imageAlt: "Custom Catering", }, { id: "corporate", name: "Corporate Events", price: "Volume Discounts", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-dessert-wooden-table_23-2148305630.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-dessert-wooden-table_23-2148305630.jpg?_wi=4", imageAlt: "Corporate Event Catering", }, { id: "wedding", name: "Wedding Collections", price: "Premium Selections", - imageSrc: "http://img.b2bpic.net/free-photo/cold-caramel-latte-with-cream_140725-7499.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/cold-caramel-latte-with-cream_140725-7499.jpg?_wi=4", imageAlt: "Wedding Catering", }, ]} -- 2.49.1 From 8b3a835f70a50c281f27f21841ec81d556932a23 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Mar 2026 03:38:41 +0000 Subject: [PATCH 3/6] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 41 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb6b42..cfb3b98 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,56 @@ import type { Metadata } from "next"; +import { Montserrat, Inter } from "next/font/google"; import { Halant } from "next/font/google"; -import { Inter } 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 { Montserrat } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + +export const metadata: Metadata = { + title: "Fairmont Cafe | Premium 24/7 Dessert Cafe in Sharjah, UAE", + description: "Discover Fairmont Cafe—Sharjah's #1 dessert destination. Premium cheesecake, specialty coffee, and gourmet treats. Open 24/7. Rated 4.7★ by 850+ customers.", + keywords: "dessert cafe Sharjah, 24 hour cafe UAE, premium cheesecake, tiramisu latte, best desserts Sharjah, cafe near me, delivery Careem Keeta", + openGraph: { + title: "Fairmont Cafe - Premium Desserts 24/7 in Sharjah", + description: "Experience the finest desserts in Sharjah. San Sebastián Cheesecake, Tiramisu Latte, and more. Open around the clock.", + url: "https://fairmontcafe.com", + siteName: "Fairmont Cafe", + images: [ + { + url: "http://img.b2bpic.net/free-photo/layered-chocolate-cake-with-cacao-cream-garnished-with-berries_140725-8733.jpg", + alt: "Fairmont Cafe Signature Desserts", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Fairmont Cafe - Premium 24/7 Dessert Destination", + description: "Join 850+ happy customers enjoying premium desserts at Fairmont. Order online or visit us at Al Sharq Street, Sharjah.", + images: ["http://img.b2bpic.net/free-photo/tasty-dessert-chocolate-cake-concept-delicious-dessert_185193-108427.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -31,7 +59,9 @@ export default function RootLayout({ return ( - + {children}