Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-22 03:38:47 +00:00
6 changed files with 70 additions and 40 deletions

View File

@@ -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"

View File

@@ -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",
},
]}

View File

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

View File

@@ -89,42 +89,42 @@ export default function MenuPage() {
id: "sansebastion",
name: "San Sebastián Cheesecake",
price: "AED 32",
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=2",
imageAlt: "San Sebastián Cheesecake",
},
{
id: "tiramisu-latte",
name: "Tiramisu Latte",
price: "AED 18",
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=2",
imageAlt: "Tiramisu Latte",
},
{
id: "pistachio-shake",
name: "Pistachio Shake",
price: "AED 22",
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=2",
imageAlt: "Pistachio Shake",
},
{
id: "molten-cake",
name: "Molten Chocolate Cake",
price: "AED 28",
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=2",
imageAlt: "Molten Chocolate Cake",
},
{
id: "waffles",
name: "Premium Belgian Waffles",
price: "AED 26",
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=2",
imageAlt: "Premium Belgian Waffles",
},
{
id: "crepes",
name: "Artisan Crepes with Nutella",
price: "AED 24",
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=2",
imageAlt: "Artisan Crepes",
},
{
@@ -138,14 +138,14 @@ export default function MenuPage() {
id: "fruit-tart",
name: "Fresh Fruit Tart",
price: "AED 30",
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=2",
imageAlt: "Fresh Fruit Tart",
},
{
id: "espresso-martini",
name: "Espresso Martini",
price: "AED 35",
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=1",
imageAlt: "Espresso Martini",
},
]}

View File

@@ -59,42 +59,42 @@ export default function OrderPage() {
id: "sansebastion",
name: "San Sebastián Cheesecake",
price: "AED 32",
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=3",
imageAlt: "San Sebastián Cheesecake",
},
{
id: "tiramisu-latte",
name: "Tiramisu Latte",
price: "AED 18",
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=3",
imageAlt: "Tiramisu Latte",
},
{
id: "pistachio-shake",
name: "Pistachio Shake",
price: "AED 22",
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=3",
imageAlt: "Pistachio Shake",
},
{
id: "molten-cake",
name: "Molten Chocolate Cake",
price: "AED 28",
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=3",
imageAlt: "Molten Chocolate Cake",
},
{
id: "waffles",
name: "Premium Waffles",
price: "AED 26",
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=3",
imageAlt: "Premium Belgian Waffles",
},
{
id: "crepes",
name: "Artisan Crepes",
price: "AED 24",
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=3",
imageAlt: "Artisan Crepes",
},
]}

View File

@@ -100,42 +100,42 @@ export default function HomePage() {
id: "sansebastion",
name: "San Sebastián Cheesecake",
price: "AED 32",
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=1",
imageAlt: "San Sebastián Cheesecake",
},
{
id: "tiramisu-latte",
name: "Tiramisu Latte",
price: "AED 18",
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=1",
imageAlt: "Tiramisu Latte",
},
{
id: "pistachio-shake",
name: "Pistachio Shake",
price: "AED 22",
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=1",
imageAlt: "Pistachio Shake",
},
{
id: "molten-cake",
name: "Molten Chocolate Cake",
price: "AED 28",
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=1",
imageAlt: "Molten Chocolate Cake",
},
{
id: "waffles",
name: "Premium Waffles",
price: "AED 26",
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=1",
imageAlt: "Premium Belgian Waffles",
},
{
id: "crepes",
name: "Artisan Crepes",
price: "AED 24",
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=1",
imageAlt: "Artisan Crepes",
},
]}
@@ -176,7 +176,7 @@ export default function HomePage() {
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=1"
imageAlt="Fairmont Cafe Interior Ambiance"
mediaAnimation="slide-up"
textboxLayout="default"