Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -114,7 +114,7 @@ export default function AboutPage() {
|
||||
icon: Heart,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/arab-restaurant_23-2147794221.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/arab-restaurant_23-2147794221.jpg?_wi=2"
|
||||
imageAlt="Chickana Restaurant interior and team"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="left"
|
||||
@@ -160,7 +160,7 @@ export default function AboutPage() {
|
||||
icon: Heart,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157785.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157785.jpg?_wi=3"
|
||||
imageAlt="restaurant table setup elegant place settings"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -202,7 +202,7 @@ export default function AboutPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/travelling-iran_8327-274.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/travelling-iran_8327-274.jpg?_wi=3"
|
||||
imageAlt="Middle Eastern restaurant exterior entrance facade"
|
||||
columns={footerColumns}
|
||||
logoText="Chickana"
|
||||
|
||||
@@ -108,7 +108,7 @@ export default function ContactPage() {
|
||||
rows: 5,
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157785.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157785.jpg?_wi=5"
|
||||
imageAlt="restaurant table setup elegant place settings"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -119,7 +119,7 @@ export default function ContactPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/travelling-iran_8327-274.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/travelling-iran_8327-274.jpg?_wi=5"
|
||||
imageAlt="Middle Eastern restaurant exterior entrance facade"
|
||||
columns={footerColumns}
|
||||
logoText="Chickana"
|
||||
|
||||
@@ -1,18 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Roboto } 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 { Roboto } 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 roboto = Roboto({
|
||||
variable: "--font-roboto",
|
||||
@@ -20,6 +24,35 @@ const roboto = Roboto({
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Chickana Restaurant - Authentic Grilled Chicken in Abu Dhabi",
|
||||
description: "Discover authentic grilled chicken and Arabic cuisine at Chickana Restaurant in Al Zahiyah, Abu Dhabi. Fresh ingredients, bold flavors. Dine-in, drive-through, and delivery available. Call 055 808 0936.",
|
||||
keywords: "grilled chicken Abu Dhabi, Arabic restaurant Al Zahiyah, shawarma, mezze, Middle Eastern cuisine, restaurant Abu Dhabi",
|
||||
openGraph: {
|
||||
title: "Chickana Restaurant - Grilled Chicken & Arabic Cuisine",
|
||||
description: "Experience authentic grilled chicken and traditional Arabic dishes at Chickana Restaurant in Abu Dhabi.",
|
||||
url: "https://chickana.ae",
|
||||
siteName: "Chickana Restaurant",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/cafe-with-burning-candles-tables_140725-7784.jpg",
|
||||
alt: "Chickana Restaurant signature grilled chicken",
|
||||
},
|
||||
],
|
||||
type: "website",
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Chickana Restaurant - Grilled Chicken & Arabic Cuisine",
|
||||
description: "Authentic grilled chicken and Arabic dishes in Al Zahiyah, Abu Dhabi",
|
||||
images: ["http://img.b2bpic.net/free-photo/cafe-with-burning-candles-tables_140725-7784.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -28,7 +61,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${roboto.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +75,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -98,56 +98,56 @@ export default function MenuPage() {
|
||||
id: "grilled-chicken-half",
|
||||
name: "Half Grilled Chicken",
|
||||
price: "AED 25",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-festive-christmas-meal-assortment_23-2148746116.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-festive-christmas-meal-assortment_23-2148746116.jpg?_wi=2",
|
||||
imageAlt: "Succulent grilled chicken with herbs and spices",
|
||||
},
|
||||
{
|
||||
id: "grilled-chicken-full",
|
||||
name: "Full Grilled Chicken",
|
||||
price: "AED 45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-festive-christmas-meal-assortment_23-2148746116.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-festive-christmas-meal-assortment_23-2148746116.jpg?_wi=3",
|
||||
imageAlt: "Whole grilled chicken perfectly seasoned",
|
||||
},
|
||||
{
|
||||
id: "chicken-shawarma",
|
||||
name: "Chicken Shawarma",
|
||||
price: "AED 20",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shawarma-wraps-served-with-sauce-french-fries_141793-369.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shawarma-wraps-served-with-sauce-french-fries_141793-369.jpg?_wi=2",
|
||||
imageAlt: "Tender shawarma meat in fresh pita bread",
|
||||
},
|
||||
{
|
||||
id: "beef-shawarma",
|
||||
name: "Beef Shawarma",
|
||||
price: "AED 25",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shawarma-wraps-served-with-sauce-french-fries_141793-369.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shawarma-wraps-served-with-sauce-french-fries_141793-369.jpg?_wi=3",
|
||||
imageAlt: "Premium beef shawarma wrap",
|
||||
},
|
||||
{
|
||||
id: "mixed-grill-xl",
|
||||
name: "Mixed Grill XL",
|
||||
price: "AED 85",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lule-chicken-kebab-with-vegetables-table_140725-6705.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lule-chicken-kebab-with-vegetables-table_140725-6705.jpg?_wi=2",
|
||||
imageAlt: "Premium mixed grill with variety of meats",
|
||||
},
|
||||
{
|
||||
id: "kebab-mix",
|
||||
name: "Kebab Mix Special",
|
||||
price: "AED 55",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lule-chicken-kebab-with-vegetables-table_140725-6705.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lule-chicken-kebab-with-vegetables-table_140725-6705.jpg?_wi=3",
|
||||
imageAlt: "Grilled kebab skewers variety",
|
||||
},
|
||||
{
|
||||
id: "arabic-mezze-deluxe",
|
||||
name: "Arabic Mezze Deluxe",
|
||||
price: "AED 60",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-table-enjoying-feast-first-day-passover-seder_23-2150247761.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-table-enjoying-feast-first-day-passover-seder_23-2150247761.jpg?_wi=2",
|
||||
imageAlt: "Premium Arabic appetizers collection",
|
||||
},
|
||||
{
|
||||
id: "grilled-veggies",
|
||||
name: "Grilled Vegetables Platter",
|
||||
price: "AED 18",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lule-chicken-kebab-with-vegetables-table_140725-6705.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lule-chicken-kebab-with-vegetables-table_140725-6705.jpg?_wi=4",
|
||||
imageAlt: "Fresh grilled vegetables",
|
||||
},
|
||||
]}
|
||||
@@ -179,7 +179,7 @@ export default function MenuPage() {
|
||||
},
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157785.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157785.jpg?_wi=2"
|
||||
imageAlt="restaurant table setup elegant place settings"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -190,7 +190,7 @@ export default function MenuPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/travelling-iran_8327-274.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/travelling-iran_8327-274.jpg?_wi=2"
|
||||
imageAlt="Middle Eastern restaurant exterior entrance facade"
|
||||
columns={footerColumns}
|
||||
logoText="Chickana"
|
||||
|
||||
@@ -127,28 +127,28 @@ export default function HomePage() {
|
||||
id: "grilled-chicken",
|
||||
name: "Grilled Chicken Special",
|
||||
price: "AED 35",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-festive-christmas-meal-assortment_23-2148746116.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-festive-christmas-meal-assortment_23-2148746116.jpg?_wi=1",
|
||||
imageAlt: "Succulent grilled chicken with herbs and spices",
|
||||
},
|
||||
{
|
||||
id: "mixed-grill",
|
||||
name: "Mixed Grill Platter",
|
||||
price: "AED 65",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lule-chicken-kebab-with-vegetables-table_140725-6705.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lule-chicken-kebab-with-vegetables-table_140725-6705.jpg?_wi=1",
|
||||
imageAlt: "Assorted grilled meats and vegetables",
|
||||
},
|
||||
{
|
||||
id: "arabic-mezze",
|
||||
name: "Arabic Mezze Combo",
|
||||
price: "AED 45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-table-enjoying-feast-first-day-passover-seder_23-2150247761.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-table-enjoying-feast-first-day-passover-seder_23-2150247761.jpg?_wi=1",
|
||||
imageAlt: "Traditional Arabic appetizers and dips",
|
||||
},
|
||||
{
|
||||
id: "shawarma-wrap",
|
||||
name: "Premium Shawarma Wrap",
|
||||
price: "AED 28",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shawarma-wraps-served-with-sauce-french-fries_141793-369.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shawarma-wraps-served-with-sauce-french-fries_141793-369.jpg?_wi=1",
|
||||
imageAlt: "Tender shawarma meat in fresh pita bread",
|
||||
},
|
||||
]}
|
||||
@@ -194,7 +194,7 @@ export default function HomePage() {
|
||||
icon: Truck,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/arab-restaurant_23-2147794221.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/arab-restaurant_23-2147794221.jpg?_wi=1"
|
||||
imageAlt="Chickana Restaurant interior and team"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -251,7 +251,7 @@ export default function HomePage() {
|
||||
},
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157785.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157785.jpg?_wi=1"
|
||||
imageAlt="restaurant table setup elegant place settings"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
@@ -262,7 +262,7 @@ export default function HomePage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/travelling-iran_8327-274.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/travelling-iran_8327-274.jpg?_wi=1"
|
||||
imageAlt="Middle Eastern restaurant exterior entrance facade"
|
||||
columns={footerColumns}
|
||||
logoText="Chickana"
|
||||
|
||||
@@ -121,7 +121,7 @@ export default function ReviewsPage() {
|
||||
rows: 5,
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157785.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157785.jpg?_wi=4"
|
||||
imageAlt="Chickana Restaurant dining experience"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -132,7 +132,7 @@ export default function ReviewsPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/travelling-iran_8327-274.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/travelling-iran_8327-274.jpg?_wi=4"
|
||||
imageAlt="Chickana Restaurant ambiance"
|
||||
logoText="Chickana"
|
||||
copyrightText="© 2025 Chickana Restaurant. All rights reserved."
|
||||
|
||||
Reference in New Issue
Block a user