diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index e33d368..09359b6 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -75,28 +75,28 @@ export default function AboutPage() { id: 1, title: "Fresh Ingredients Daily", description: "We use premium ingredients sourced daily to ensure every burger, pizza, and roll is prepared fresh. Quality is never compromised.", - imageSrc: "http://img.b2bpic.net/free-photo/friends-having-food-bar_107420-94812.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/friends-having-food-bar_107420-94812.jpg?_wi=2", imageAlt: "Modern fast food restaurant interior clean", }, { id: 2, title: "Lightning-Fast Service", description: "Your order is prepared quickly without sacrificing taste. Our trained team works efficiently to get your food to you hot and ready.", - imageSrc: "http://img.b2bpic.net/free-photo/high-protein-meal-burgers-close-up-detail_23-2149098863.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/high-protein-meal-burgers-close-up-detail_23-2149098863.jpg?_wi=6", imageAlt: "Delicious cheesy burger close up appetizing", }, { id: 3, title: "Open Late Until 2:30 AM", description: "Perfect for late-night cravings. Whether it's midnight snacking or early morning hunger, we're here for you every single day.", - imageSrc: "http://img.b2bpic.net/free-psd/classic-poutine-with-golden-fries-cheese-curds-rich-gravy_84443-72725.jpg", + imageSrc: "http://img.b2bpic.net/free-psd/classic-poutine-with-golden-fries-cheese-curds-rich-gravy_84443-72725.jpg?_wi=5", imageAlt: "Crispy french fries golden loaded toppings", }, { id: 4, title: "Family-Friendly Environment", description: "Welcoming to everyone—families, students, professionals, and night shift workers. Enjoy dine-in comfort or quick takeaway service.", - imageSrc: "http://img.b2bpic.net/free-photo/cutting-homemade-apple-strudel_123827-36355.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/cutting-homemade-apple-strudel_123827-36355.jpg?_wi=4", imageAlt: "Cheesy roll pastry filled golden", }, ]} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index e91b6e7..d122630 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -77,7 +77,7 @@ export default function ContactPage() { tagAnimation="slide-up" background={{ variant: "plain" }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/front-view-female-courier-green-uniform-with-dessert-yellow-background-work-color-job-delivery-woman-worker-food_179666-39074.jpg" + imageSrc="http://img.b2bpic.net/free-photo/front-view-female-courier-green-uniform-with-dessert-yellow-background-work-color-job-delivery-woman-worker-food_179666-39074.jpg?_wi=2" imageAlt="Delivery motorcycle fast food service" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..67c6fc9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,67 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } 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 { Manrope } from "next/font/google"; -import { DM_Sans } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Cheesy Joe's - Fresh Burgers & Pizza in Chaklala", + description: "Delicious fast food in Chaklala Scheme 3, Rawalpindi. Fresh burgers, cheesy pizzas, and loaded fries. Open daily until 2:30 AM. Call +92 330 7771171 to order.", + keywords: "fast food Rawalpindi, pizza Chaklala, burgers Rawalpindi, late night food, cheese pizza, cheesy joe's, fast food delivery, food near me", + metadataBase: new URL("https://cheesynjoes.com"), + alternates: { + canonical: "https://cheesynjoes.com", + }, + openGraph: { + title: "Cheesy Joe's - Fresh Fast Food in Chaklala", + description: "Your go-to spot for mouth-watering burgers, pizzas, and fast food. Open until 2:30 AM daily. Order now!", + url: "https://cheesynjoes.com", + siteName: "Cheesy Joe's", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/high-protein-meal-burgers-close-up-detail_23-2149098863.jpg", + alt: "Cheesy Joe's Premium Burger", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Cheesy Joe's - Fresh Burgers & Pizza", + description: "Late-night fast food in Chaklala. Call +92 330 7771171 to order.", + images: ["http://img.b2bpic.net/free-photo/top-view-pizza-slices-with-toppings_23-2148601642.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +70,9 @@ export default function RootLayout({ return ( - + {children}