Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 10:36:18 +00:00
2 changed files with 13 additions and 51 deletions

View File

@@ -1,60 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Cube Restaurant | Best Restaurant in Deira, Dubai Spice Souk", description: "Authentic restaurant in Dubai Deira serving quality meals. Dine-in, takeaway & delivery. 4.5★ rated. AED 50-100. Open until 12 AM. Call 056 805 7794.", keywords: "restaurant Dubai, Deira restaurant, Dubai Spice Souk, restaurant near me, dine in Dubai, takeaway Dubai, delivery Dubai, authentic food Dubai", metadataBase: new URL("https://www.cuberestaurant.ae"),
alternates: {
canonical: "https://www.cuberestaurant.ae"
},
openGraph: {
title: "Cube Restaurant | Authentic Dining in Dubai Spice Souk", description: "Discover authentic flavors at Cube Restaurant in the heart of Deira. Quality meals, friendly service, convenient location. Call now to reserve!", url: "https://www.cuberestaurant.ae", siteName: "Cube Restaurant", images: [
{
url: "http://img.b2bpic.net/free-photo/top-view-arab-dish_23-2147794277.jpg", alt: "Cube Restaurant - Authentic dining in Dubai Deira"
}
],
type: "website"
},
twitter: {
card: "summary_large_image", title: "Cube Restaurant | Best Restaurant in Deira", description: "Authentic food, friendly service, perfect location in Dubai Spice Souk. Open until 12 AM.", images: ["http://img.b2bpic.net/free-photo/top-view-arab-dish_23-2147794277.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Cube Restaurant", description: "Authentic Flavors in the Heart of Dubai Spice Souk"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1422,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -81,13 +81,16 @@ export default function LandingPage() {
tagAnimation="slide-up"
features={[
{
id: "1", title: "Freshly Prepared Meals", author: "Daily Specials", description: "Every dish is prepared fresh to order using premium, locally-sourced ingredients that capture authentic flavors.", tags: ["Quality", "Fresh"], imageSrc: "http://img.b2bpic.net/free-photo/front-view-fried-meat-with-onion-greens-tomato-brown-wooden-desk-meal-food-meat-dinner_140725-26141.jpg?_wi=1", imageAlt: "Freshly prepared grilled specialties"
id: "1", title: "Freshly Prepared Meals", author: "Daily Specials", description: "Every dish is prepared fresh to order using premium, locally-sourced ingredients that capture authentic flavors.", tags: ["Quality", "Fresh"],
imageSrc: "http://img.b2bpic.net/free-photo/front-view-fried-meat-with-onion-greens-tomato-brown-wooden-desk-meal-food-meat-dinner_140725-26141.jpg?_wi=1", imageAlt: "Freshly prepared grilled specialties"
},
{
id: "2", title: "Friendly Service", author: "Welcoming Atmosphere", description: "Our team treats every guest like family, ensuring a warm, hospitable experience whether you're a local or tourist.", tags: ["Hospitality", "Service"], imageSrc: "http://img.b2bpic.net/free-photo/vegan-salads-cabbage-carrots-mushroom-cheese-onion-pepper-top-view-concept_176474-213.jpg?_wi=1", imageAlt: "Friendly restaurant staff serving guests"
id: "2", title: "Friendly Service", author: "Welcoming Atmosphere", description: "Our team treats every guest like family, ensuring a warm, hospitable experience whether you're a local or tourist.", tags: ["Hospitality", "Service"],
imageSrc: "http://img.b2bpic.net/free-photo/vegan-salads-cabbage-carrots-mushroom-cheese-onion-pepper-top-view-concept_176474-213.jpg?_wi=1", imageAlt: "Friendly restaurant staff serving guests"
},
{
id: "3", title: "Convenient Deira Location", author: "Old Baladiya Street", description: "Located in the iconic Dubai Spice Souk with easy access for shoppers, tourists, and hotel guests exploring the area.", tags: ["Location", "Accessible"], imageSrc: "http://img.b2bpic.net/free-photo/hand-tapping-tablet-with-map_23-2147732953.jpg", imageAlt: "Dubai Deira Spice Souk location"
id: "3", title: "Convenient Deira Location", author: "Old Baladiya Street", description: "Located in the iconic Dubai Spice Souk with easy access for shoppers, tourists, and hotel guests exploring the area.", tags: ["Location", "Accessible"],
imageSrc: "http://img.b2bpic.net/free-photo/hand-tapping-tablet-with-map_23-2147732953.jpg", imageAlt: "Dubai Deira Spice Souk location"
}
]}
animationType="slide-up"
@@ -125,7 +128,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Order Online", href: "tel:+971568057794" }]}
buttons={[{ text: "Order via WhatsApp", href: "https://wa.me/971568057794" }]}
/>
</div>