From a775166ea765001c272d4cab89a60330e730a537 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 03:27:15 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index c9e6af9..00f306c 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -116,7 +116,7 @@ export default function AboutPage() { icon: Users, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/group-diverse-friends-are-having-dinner-together_53876-40927.jpg" + imageSrc="http://img.b2bpic.net/free-photo/group-diverse-friends-are-having-dinner-together_53876-40927.jpg?_wi=3" imageAlt="Chutney Joe modern Indian restaurant interior" mediaAnimation="slide-up" imagePosition="right" @@ -170,7 +170,7 @@ export default function AboutPage() { testimonial: "One of the best Indian meals I've had. The butter chicken was absolutely delicious, and the staff made us feel so welcome. Definitely coming back!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/humorous-talks-with-close-friends-dinner-hot-spring-day-cafe_8353-10001.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/humorous-talks-with-close-friends-dinner-hot-spring-day-cafe_8353-10001.jpg?_wi=2", imageAlt: "Sarah Mitchell", }, { @@ -180,7 +180,7 @@ export default function AboutPage() { testimonial: "Friendly and welcoming with great flavors. The paneer tikka is outstanding, and I appreciate how they accommodate my vegan preferences.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/people-cheering-with-wine-glasses-luxurious-restaurant_23-2150517417.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/people-cheering-with-wine-glasses-luxurious-restaurant_23-2150517417.jpg?_wi=2", imageAlt: "Rajesh Patel", }, { @@ -190,7 +190,7 @@ export default function AboutPage() { testimonial: "Good food, though service can vary during peak times. The king prawn dishes are exceptional, and the atmosphere is lovely.", rating: 4, - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-arriving-with-tasty-roasted-chicken-lunch-friends-family-gathered-together-celebration_482257-23920.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-arriving-with-tasty-roasted-chicken-lunch-friends-family-gathered-together-celebration_482257-23920.jpg?_wi=2", imageAlt: "Emma Johnson", }, ]} -- 2.49.1 From 60b9eac70c828f3e55ecff57cd4837ab45fbeb6c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 03:27:15 +0000 Subject: [PATCH 2/6] Update src/app/booking/page.tsx --- src/app/booking/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx index 495bf22..d4de1db 100644 --- a/src/app/booking/page.tsx +++ b/src/app/booking/page.tsx @@ -114,7 +114,7 @@ export default function BookingPage() { }} buttonText="Reserve Table" useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/young-woman-cooking-kitchen_1303-22171.jpg" + imageSrc="http://img.b2bpic.net/free-photo/young-woman-cooking-kitchen_1303-22171.jpg?_wi=2" imageAlt="Chutney Joe kitchen preparation" mediaAnimation="slide-up" mediaPosition="right" -- 2.49.1 From 7e0d3e8ad11b93d03b61618b38b47467d7c3123f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 03:27:15 +0000 Subject: [PATCH 3/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 38a0ee0..a544acd 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -168,7 +168,7 @@ export default function ContactPage() { }} buttonText="Send Message" useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/young-woman-cooking-kitchen_1303-22171.jpg" + imageSrc="http://img.b2bpic.net/free-photo/young-woman-cooking-kitchen_1303-22171.jpg?_wi=3" imageAlt="Chutney Joe kitchen preparation" mediaAnimation="slide-up" mediaPosition="right" -- 2.49.1 From 8ae9b4f66b3e31bd704b7c6bff3f874241dec187 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 03:27:16 +0000 Subject: [PATCH 4/6] Update src/app/layout.tsx --- src/app/layout.tsx | 61 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 49 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..6c79079 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,62 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Mulish } 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 { Mulish } 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 mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Chutney Joe - Authentic Indian Restaurant Cambourne", + description: "Experience authentic Indian cuisine at Chutney Joe. Fresh ingredients, warm hospitality, and traditional flavors near Cambridge. Book your table today.", + keywords: "Indian restaurant Cambourne, Indian food Cambridge, best curry restaurant, authentic Indian cuisine UK", + metadataBase: new URL("https://chutneyjoe.com"), + alternates: { + canonical: "https://chutneyjoe.com", + }, + openGraph: { + title: "Chutney Joe - Authentic Indian Restaurant", + description: "Discover authentic Indian cuisine prepared with fresh ingredients and traditional techniques. Warm, welcoming atmosphere near Cambridge.", + url: "https://chutneyjoe.com", + siteName: "Chutney Joe", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/curry-with-chicken-onions-indian-food-asian-cuisine-top-view_2829-6243.jpg", + alt: "Chutney Joe Indian cuisine", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Chutney Joe - Authentic Indian Restaurant Cambourne", + description: "Experience authentic Indian cuisine with fresh ingredients and warm hospitality.", + images: [ + "http://img.b2bpic.net/free-photo/curry-with-chicken-onions-indian-food-asian-cuisine-top-view_2829-6243.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +66,9 @@ export default function RootLayout({ return ( - + {children}