diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 25011b4..d257843 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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", }, ], diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..6ab232d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}