Merge version_1 into main #1
@@ -52,7 +52,7 @@ export default function AboutPage() {
|
||||
description="We offer multiple ways to get your order delivered safely and quickly to your doorstep."
|
||||
subdescription="Choose from dine-in, drive-through, or no-contact delivery services. Real-time order tracking available for all deliveries."
|
||||
icon={MapPin}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-smartphone-with-food-casseroles_23-2148487826.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-smartphone-with-food-casseroles_23-2148487826.jpg?_wi=2"
|
||||
imageAlt="delivery service options multiple ways"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
@@ -74,11 +74,11 @@ export default function AboutPage() {
|
||||
icon: Flame,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chicken-legs-with-spices-salt-ready-cooking_114579-44460.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chicken-legs-with-spices-salt-ready-cooking_114579-44460.jpg?_wi=3",
|
||||
imageAlt: "fresh chicken quality ingredients close-up",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-chef-working-kitchen_23-2149728012.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-chef-working-kitchen_23-2149728012.jpg?_wi=3",
|
||||
imageAlt: "professional kitchen cooking fried chicken",
|
||||
},
|
||||
],
|
||||
@@ -89,11 +89,11 @@ export default function AboutPage() {
|
||||
icon: Zap,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-lifestyle-concept-with-scooter_23-2148094020.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-lifestyle-concept-with-scooter_23-2148094020.jpg?_wi=3",
|
||||
imageAlt: "delivery driver motorcycle fast movement",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/taxi-app-interface-concept_23-2148489951.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/taxi-app-interface-concept_23-2148489951.jpg?_wi=3",
|
||||
imageAlt: "phone mobile tracking map GPS",
|
||||
},
|
||||
],
|
||||
@@ -104,11 +104,11 @@ export default function AboutPage() {
|
||||
icon: Clock,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/we-are-open-sign_23-2148823323.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/we-are-open-sign_23-2148823323.jpg?_wi=3",
|
||||
imageAlt: "24 hour service open clock",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-taking-medical-protection-face-mask-out-after-purchasing-takeaway-food_482257-4545.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-taking-medical-protection-face-mask-out-after-purchasing-takeaway-food_482257-4545.jpg?_wi=3",
|
||||
imageAlt: "night time delivery service dark",
|
||||
},
|
||||
],
|
||||
|
||||
@@ -1,29 +1,54 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Libre_Baskerville, 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 { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Chicken Box - Fresh Crispy Chicken Delivered Fast 24/7",
|
||||
description: "Order fresh, crispy chicken delivered in 30 minutes. Available 24/7 in El Tor. Dine-in, drive-through, or no-contact delivery. Premium quality, fast service, satisfied customers.",
|
||||
keywords: "chicken delivery, fast food, fried chicken, food delivery El Tor, 24 hour restaurant, Egyptian food",
|
||||
metadataBase: new URL("https://chickenbox.com"),
|
||||
alternates: {
|
||||
canonical: "https://chickenbox.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Chicken Box - Fresh Crispy Chicken Delivered Fast",
|
||||
description: "Order fresh, crispy chicken delivered in 30 minutes. Available 24/7.",
|
||||
url: "https://chickenbox.com",
|
||||
siteName: "Chicken Box",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/flat-lay-frame-with-food-copy-space_23-2148308862.jpg",
|
||||
alt: "Fresh crispy chicken from Chicken Box",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Chicken Box - Fresh Crispy Chicken",
|
||||
description: "Order now and get delivered in 30 minutes. 24/7 service.",
|
||||
images: ["http://img.b2bpic.net/free-photo/flat-lay-frame-with-food-copy-space_23-2148308862.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -32,7 +57,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +71,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -24,84 +24,84 @@ export default function MenuPage() {
|
||||
id: "meal-1",
|
||||
name: "Drumsticks Meal",
|
||||
price: "115 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-american-food-with-copy-space_23-2148454897.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-american-food-with-copy-space_23-2148454897.jpg?_wi=2",
|
||||
imageAlt: "fried chicken combo meal box",
|
||||
},
|
||||
{
|
||||
id: "meal-2",
|
||||
name: "Snacks Box",
|
||||
price: "140 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/us-labor-day-celebration-with-delicious-food_23-2150347447.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/us-labor-day-celebration-with-delicious-food_23-2150347447.jpg?_wi=2",
|
||||
imageAlt: "large family chicken meal box",
|
||||
},
|
||||
{
|
||||
id: "meal-3",
|
||||
name: "Char Lucky Meal",
|
||||
price: "180 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-chicken-fitburger-black-bun-with-glass-beer_141793-4832.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-chicken-fitburger-black-bun-with-glass-beer_141793-4832.jpg?_wi=2",
|
||||
imageAlt: "chargrilled chicken specialty meal",
|
||||
},
|
||||
{
|
||||
id: "meal-4",
|
||||
name: "Mid Meal",
|
||||
price: "245 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-baked-chicken-fresh-tomatoes-lemon-slices-plate-black_140725-148826.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-baked-chicken-fresh-tomatoes-lemon-slices-plate-black_140725-148826.jpg?_wi=2",
|
||||
imageAlt: "mixed chicken sandwich burger combo",
|
||||
},
|
||||
{
|
||||
id: "meal-5",
|
||||
name: "Party Box",
|
||||
price: "210 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-frame-with-food-copy-space_23-2148308862.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-frame-with-food-copy-space_23-2148308862.jpg?_wi=2",
|
||||
imageAlt: "fried chicken platter party meal",
|
||||
},
|
||||
{
|
||||
id: "meal-6",
|
||||
name: "Mix Meal",
|
||||
price: "250 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chicken-legs-with-spices-salt-ready-cooking_114579-44460.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chicken-legs-with-spices-salt-ready-cooking_114579-44460.jpg?_wi=2",
|
||||
imageAlt: "mixed chicken variety meal",
|
||||
},
|
||||
{
|
||||
id: "meal-7",
|
||||
name: "Super Meal",
|
||||
price: "380 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-chef-working-kitchen_23-2149728012.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-chef-working-kitchen_23-2149728012.jpg?_wi=2",
|
||||
imageAlt: "premium super meal package",
|
||||
},
|
||||
{
|
||||
id: "meal-8",
|
||||
name: "Family Box",
|
||||
price: "490 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-lifestyle-concept-with-scooter_23-2148094020.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-lifestyle-concept-with-scooter_23-2148094020.jpg?_wi=2",
|
||||
imageAlt: "large family box delivery",
|
||||
},
|
||||
{
|
||||
id: "meal-9",
|
||||
name: "Super Family",
|
||||
price: "600 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/taxi-app-interface-concept_23-2148489951.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/taxi-app-interface-concept_23-2148489951.jpg?_wi=2",
|
||||
imageAlt: "super family meal package",
|
||||
},
|
||||
{
|
||||
id: "meal-10",
|
||||
name: "Big Family",
|
||||
price: "700 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/we-are-open-sign_23-2148823323.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/we-are-open-sign_23-2148823323.jpg?_wi=2",
|
||||
imageAlt: "big family meal box",
|
||||
},
|
||||
{
|
||||
id: "meal-11",
|
||||
name: "Double Family",
|
||||
price: "700 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-taking-medical-protection-face-mask-out-after-purchasing-takeaway-food_482257-4545.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-taking-medical-protection-face-mask-out-after-purchasing-takeaway-food_482257-4545.jpg?_wi=2",
|
||||
imageAlt: "double family meal option",
|
||||
},
|
||||
{
|
||||
id: "meal-12",
|
||||
name: "Triple Box",
|
||||
price: "170 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-middle-easter-man-with-beard-showing-thumbs-up-smiling-praise-compliment-smth-good-looking-satisfied-white-background_176420-49806.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-middle-easter-man-with-beard-showing-thumbs-up-smiling-praise-compliment-smth-good-looking-satisfied-white-background_176420-49806.jpg?_wi=2",
|
||||
imageAlt: "triple box meal",
|
||||
},
|
||||
];
|
||||
@@ -148,7 +148,7 @@ export default function MenuPage() {
|
||||
background={{
|
||||
variant: "floatingGradient",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/flat-lay-frame-with-food-copy-space_23-2148308862.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/flat-lay-frame-with-food-copy-space_23-2148308862.jpg?_wi=3"
|
||||
imageAlt="Complete menu selection"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
|
||||
@@ -65,7 +65,7 @@ export default function HomePage() {
|
||||
background={{
|
||||
variant: "animated-grid",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/flat-lay-frame-with-food-copy-space_23-2148308862.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/flat-lay-frame-with-food-copy-space_23-2148308862.jpg?_wi=1"
|
||||
imageAlt="Fresh crispy fried chicken and burgers"
|
||||
mediaAnimation="slide-up"
|
||||
frameStyle="card"
|
||||
@@ -85,28 +85,28 @@ export default function HomePage() {
|
||||
id: "meal-1",
|
||||
name: "Super Meal",
|
||||
price: "380 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-american-food-with-copy-space_23-2148454897.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-american-food-with-copy-space_23-2148454897.jpg?_wi=1",
|
||||
imageAlt: "fried chicken combo meal box",
|
||||
},
|
||||
{
|
||||
id: "meal-2",
|
||||
name: "Family Box",
|
||||
price: "490 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/us-labor-day-celebration-with-delicious-food_23-2150347447.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/us-labor-day-celebration-with-delicious-food_23-2150347447.jpg?_wi=1",
|
||||
imageAlt: "large family chicken meal box",
|
||||
},
|
||||
{
|
||||
id: "meal-3",
|
||||
name: "Mix Meal",
|
||||
price: "250 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-baked-chicken-fresh-tomatoes-lemon-slices-plate-black_140725-148826.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-baked-chicken-fresh-tomatoes-lemon-slices-plate-black_140725-148826.jpg?_wi=1",
|
||||
imageAlt: "mixed chicken sandwich burger combo",
|
||||
},
|
||||
{
|
||||
id: "meal-4",
|
||||
name: "Char Lucky Meal",
|
||||
price: "180 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-chicken-fitburger-black-bun-with-glass-beer_141793-4832.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-chicken-fitburger-black-bun-with-glass-beer_141793-4832.jpg?_wi=1",
|
||||
imageAlt: "chargrilled chicken specialty meal",
|
||||
},
|
||||
]}
|
||||
@@ -140,11 +140,11 @@ export default function HomePage() {
|
||||
icon: Flame,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chicken-legs-with-spices-salt-ready-cooking_114579-44460.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chicken-legs-with-spices-salt-ready-cooking_114579-44460.jpg?_wi=1",
|
||||
imageAlt: "fresh chicken quality ingredients close-up",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-chef-working-kitchen_23-2149728012.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-chef-working-kitchen_23-2149728012.jpg?_wi=1",
|
||||
imageAlt: "professional kitchen cooking fried chicken",
|
||||
},
|
||||
],
|
||||
@@ -155,11 +155,11 @@ export default function HomePage() {
|
||||
icon: Zap,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-lifestyle-concept-with-scooter_23-2148094020.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/teenage-boy-lifestyle-concept-with-scooter_23-2148094020.jpg?_wi=1",
|
||||
imageAlt: "delivery driver motorcycle fast movement",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/taxi-app-interface-concept_23-2148489951.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/taxi-app-interface-concept_23-2148489951.jpg?_wi=1",
|
||||
imageAlt: "phone mobile tracking map GPS",
|
||||
},
|
||||
],
|
||||
@@ -170,11 +170,11 @@ export default function HomePage() {
|
||||
icon: Clock,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/we-are-open-sign_23-2148823323.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/we-are-open-sign_23-2148823323.jpg?_wi=1",
|
||||
imageAlt: "24 hour service open clock",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-taking-medical-protection-face-mask-out-after-purchasing-takeaway-food_482257-4545.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-taking-medical-protection-face-mask-out-after-purchasing-takeaway-food_482257-4545.jpg?_wi=1",
|
||||
imageAlt: "night time delivery service dark",
|
||||
},
|
||||
],
|
||||
@@ -205,7 +205,7 @@ export default function HomePage() {
|
||||
quote: "The chicken is always crispy and fresh. Delivery is incredibly fast. Highly recommend!",
|
||||
name: "Ahmed Hassan",
|
||||
role: "Regular Customer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-middle-easter-man-with-beard-showing-thumbs-up-smiling-praise-compliment-smth-good-looking-satisfied-white-background_176420-49806.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-middle-easter-man-with-beard-showing-thumbs-up-smiling-praise-compliment-smth-good-looking-satisfied-white-background_176420-49806.jpg?_wi=1",
|
||||
imageAlt: "happy customer man smiling portrait",
|
||||
},
|
||||
{
|
||||
@@ -214,7 +214,7 @@ export default function HomePage() {
|
||||
quote: "We order from Chicken Box every weekend. The quality never changes, always excellent.",
|
||||
name: "Fatima Mahmoud",
|
||||
role: "Family Customer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-pretty-young-woman-showing-thumb-up-park_1262-20240.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-pretty-young-woman-showing-thumb-up-park_1262-20240.jpg?_wi=1",
|
||||
imageAlt: "happy woman customer smiling portrait",
|
||||
},
|
||||
{
|
||||
@@ -223,7 +223,7 @@ export default function HomePage() {
|
||||
quote: "Great for gatherings. Everyone loved the variety and quantity. Will definitely order again.",
|
||||
name: "Mohamed Ibrahim",
|
||||
role: "Event Organizer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-thumbs-up_1149-1163.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-thumbs-up_1149-1163.jpg?_wi=1",
|
||||
imageAlt: "professional man portrait satisfied",
|
||||
},
|
||||
{
|
||||
@@ -232,7 +232,7 @@ export default function HomePage() {
|
||||
quote: "Been ordering for months now. Taste is consistent, pricing is fair, service is reliable.",
|
||||
name: "Layla Khalil",
|
||||
role: "Loyal Customer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businesswoman-showing-thumb-up_329181-1241.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businesswoman-showing-thumb-up_329181-1241.jpg?_wi=1",
|
||||
imageAlt: "diverse woman portrait smiling happy",
|
||||
},
|
||||
{
|
||||
@@ -241,7 +241,7 @@ export default function HomePage() {
|
||||
quote: "Finally a place that's open 24/7 with quality food. My go-to for late night cravings.",
|
||||
name: "Omar Saleh",
|
||||
role: "Night Shift Worker",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-cheerful-man-classic-black-jacket-white-shirt-happily-showing-ok-gesture-while-looking-camera-orange-background_574295-5835.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-cheerful-man-classic-black-jacket-white-shirt-happily-showing-ok-gesture-while-looking-camera-orange-background_574295-5835.jpg?_wi=1",
|
||||
imageAlt: "young man portrait satisfied customer",
|
||||
},
|
||||
{
|
||||
@@ -250,7 +250,7 @@ export default function HomePage() {
|
||||
quote: "Premium quality at reasonable prices. Best deal in town for this quality of food.",
|
||||
name: "Noor Abdullah",
|
||||
role: "Value Seeker",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-overjoyed-woman-rejoicing-her-success_74855-3513.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-overjoyed-woman-rejoicing-her-success_74855-3513.jpg?_wi=1",
|
||||
imageAlt: "diverse female portrait satisfied",
|
||||
},
|
||||
]}
|
||||
@@ -276,7 +276,7 @@ export default function HomePage() {
|
||||
description="We offer multiple ways to get your order delivered safely and quickly to your doorstep."
|
||||
subdescription="Choose from dine-in, drive-through, or no-contact delivery services. Real-time order tracking available for all deliveries."
|
||||
icon={MapPin}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-smartphone-with-food-casseroles_23-2148487826.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-smartphone-with-food-casseroles_23-2148487826.jpg?_wi=1"
|
||||
imageAlt="delivery service options multiple ways"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
|
||||
@@ -52,7 +52,7 @@ export default function ReviewsPage() {
|
||||
quote: "The chicken is always crispy and fresh. Delivery is incredibly fast. Highly recommend!",
|
||||
name: "Ahmed Hassan",
|
||||
role: "Regular Customer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-middle-easter-man-with-beard-showing-thumbs-up-smiling-praise-compliment-smth-good-looking-satisfied-white-background_176420-49806.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-middle-easter-man-with-beard-showing-thumbs-up-smiling-praise-compliment-smth-good-looking-satisfied-white-background_176420-49806.jpg?_wi=3",
|
||||
imageAlt: "happy customer man smiling portrait",
|
||||
},
|
||||
{
|
||||
@@ -61,7 +61,7 @@ export default function ReviewsPage() {
|
||||
quote: "We order from Chicken Box every weekend. The quality never changes, always excellent.",
|
||||
name: "Fatima Mahmoud",
|
||||
role: "Family Customer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-pretty-young-woman-showing-thumb-up-park_1262-20240.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-pretty-young-woman-showing-thumb-up-park_1262-20240.jpg?_wi=2",
|
||||
imageAlt: "happy woman customer smiling portrait",
|
||||
},
|
||||
{
|
||||
@@ -70,7 +70,7 @@ export default function ReviewsPage() {
|
||||
quote: "Great for gatherings. Everyone loved the variety and quantity. Will definitely order again.",
|
||||
name: "Mohamed Ibrahim",
|
||||
role: "Event Organizer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-thumbs-up_1149-1163.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-thumbs-up_1149-1163.jpg?_wi=2",
|
||||
imageAlt: "professional man portrait satisfied",
|
||||
},
|
||||
{
|
||||
@@ -79,7 +79,7 @@ export default function ReviewsPage() {
|
||||
quote: "Been ordering for months now. Taste is consistent, pricing is fair, service is reliable.",
|
||||
name: "Layla Khalil",
|
||||
role: "Loyal Customer",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businesswoman-showing-thumb-up_329181-1241.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businesswoman-showing-thumb-up_329181-1241.jpg?_wi=2",
|
||||
imageAlt: "diverse woman portrait smiling happy",
|
||||
},
|
||||
{
|
||||
@@ -88,7 +88,7 @@ export default function ReviewsPage() {
|
||||
quote: "Finally a place that's open 24/7 with quality food. My go-to for late night cravings.",
|
||||
name: "Omar Saleh",
|
||||
role: "Night Shift Worker",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-cheerful-man-classic-black-jacket-white-shirt-happily-showing-ok-gesture-while-looking-camera-orange-background_574295-5835.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-cheerful-man-classic-black-jacket-white-shirt-happily-showing-ok-gesture-while-looking-camera-orange-background_574295-5835.jpg?_wi=2",
|
||||
imageAlt: "young man portrait satisfied customer",
|
||||
},
|
||||
{
|
||||
@@ -97,7 +97,7 @@ export default function ReviewsPage() {
|
||||
quote: "Premium quality at reasonable prices. Best deal in town for this quality of food.",
|
||||
name: "Noor Abdullah",
|
||||
role: "Value Seeker",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-overjoyed-woman-rejoicing-her-success_74855-3513.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-overjoyed-woman-rejoicing-her-success_74855-3513.jpg?_wi=2",
|
||||
imageAlt: "diverse female portrait satisfied",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user