From 732c40735c2ddc9d79db7e19941d5e571f7542ef Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 21:44:44 +0000 Subject: [PATCH 1/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 9e796d4..80d6d8e 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -50,7 +50,7 @@ export default function ContactPage() { variant: "plain", }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/sitting-dining-space-terrace-restaurant-with-furniture_114579-2727.jpg" + imageSrc="http://img.b2bpic.net/free-photo/sitting-dining-space-terrace-restaurant-with-furniture_114579-2727.jpg?_wi=2" imageAlt="Shaheen's Fast Foods restaurant location" mediaAnimation="opacity" mediaPosition="right" @@ -71,7 +71,7 @@ export default function ContactPage() { name: "Clinton Pietersen", role: "Local Guide", testimonial: "Love the food. Fresh, delicious, and always served hot. Best fast food spot in Mondeor!", - imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-businesswoman-smiling_1262-21181.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/middle-aged-businesswoman-smiling_1262-21181.jpg?_wi=2", imageAlt: "happy customer portrait male", icon: Star, }, @@ -80,7 +80,7 @@ export default function ContactPage() { name: "Laveen Oswin", role: "Regular Customer", testimonial: "Amazing takeaway experience. Quick service, friendly staff, and the food is always top quality. Highly recommend!", - imageSrc: "http://img.b2bpic.net/free-photo/funny-overjoyed-attractive-female-laughs-joyfully-being-high-spirit-as-spends-spare-time-company-best-friends-have-fun-together_273609-3591.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/funny-overjoyed-attractive-female-laughs-joyfully-being-high-spirit-as-spends-spare-time-company-best-friends-have-fun-together_273609-3591.jpg?_wi=2", imageAlt: "happy customer portrait female", icon: Star, }, @@ -89,7 +89,7 @@ export default function ContactPage() { name: "Teboho Leburu", role: "Happy Customer", testimonial: "Great meals at affordable prices. The staff are welcoming and the portions are generous. Will definitely return!", - imageSrc: "http://img.b2bpic.net/free-photo/happy-african-man-smiling_176420-12613.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-african-man-smiling_176420-12613.jpg?_wi=2", imageAlt: "happy customer portrait diverse", icon: Star, }, @@ -98,7 +98,7 @@ export default function ContactPage() { name: "Sarah Johnson", role: "Satisfied Customer", testimonial: "Best burgers in the area! Fresh ingredients, perfectly cooked, and the service is consistently excellent.", - imageSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/casual-smile-street-style-background-spring_1139-777.jpg?_wi=2", imageAlt: "happy female customer portrait", icon: Star, }, -- 2.49.1 From cbc7af0e6a5a0419f92bae3442e41a5c27217b57 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 21:44:45 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..7fc33c1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } 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 { 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Shaheen's Fast Foods - Fresh Fast Food in Johannesburg", + description: "Best fast food restaurant in Mondeor, Johannesburg. Fresh burgers, sandwiches, chips & more. Dine-in & takeout available. 6AM-10PM daily. Call +27 83 655 8434", + keywords: "fast food, burgers, Johannesburg, Mondeor, takeout, dine-in, sandwiches, chips", + metadataBase: new URL("https://shaheensfastfoods.com"), + alternates: { + canonical: "https://shaheensfastfoods.com", + }, + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Shaheen's Fast Foods", + description: "Fresh, delicious fast food in Mondeor, Johannesburg", + url: "https://shaheensfastfoods.com", + siteName: "Shaheen's Fast Foods", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/front-view-delicious-burger-menu-assortment_23-2148868210.jpg", + alt: "Fresh burger from Shaheen's Fast Foods", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Shaheen's Fast Foods", + description: "Fresh, delicious fast food in Johannesburg", + images: ["http://img.b2bpic.net/free-photo/front-view-delicious-burger-menu-assortment_23-2148868210.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}