From 51f7afc226d5f4987896b4e8b13d2953e50be9b4 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 08:09:30 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 9d9d25d..777a13a 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -51,7 +51,7 @@ export default function AboutPage() { tagIcon={Star} tagAnimation="slide-up" background="radial-gradient" - imageSrc="http://img.b2bpic.net/free-photo/jar-various-cookies-with-latte-coffee-cup-cafe-counter_23-2148209234.jpg" + imageSrc="http://img.b2bpic.net/free-photo/jar-various-cookies-with-latte-coffee-cup-cafe-counter_23-2148209234.jpg?_wi=2" imageAlt="Suto Cafe interior story and heritage" buttons={[ { -- 2.49.1 From dd7fc22c28fb07ff1dd841433761271a31b7fb15 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 08:09:31 +0000 Subject: [PATCH 2/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 5ed52ac..50fbde9 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -49,7 +49,7 @@ export default function ContactPage() { tagIcon={MapPin} tagAnimation="slide-up" background="radial-gradient" - imageSrc="http://img.b2bpic.net/free-photo/jar-various-cookies-with-latte-coffee-cup-cafe-counter_23-2148209234.jpg" + imageSrc="http://img.b2bpic.net/free-photo/jar-various-cookies-with-latte-coffee-cup-cafe-counter_23-2148209234.jpg?_wi=5" imageAlt="Suto Cafe contact and location" buttons={[ { -- 2.49.1 From ffa2ab5781d17d15e9b983b9b422a7b442d40f19 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 08:09:31 +0000 Subject: [PATCH 3/6] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 8740af6..fd39d9f 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -58,7 +58,7 @@ const GalleryPage = () => { tagIcon={Camera} tagAnimation="slide-up" background="radial-gradient" - imageSrc="http://img.b2bpic.net/free-photo/jar-various-cookies-with-latte-coffee-cup-cafe-counter_23-2148209234.jpg" + imageSrc="http://img.b2bpic.net/free-photo/jar-various-cookies-with-latte-coffee-cup-cafe-counter_23-2148209234.jpg?_wi=4" imageAlt="Suto Cafe gallery showcase of ambience and food" buttons={[ { @@ -86,7 +86,7 @@ const GalleryPage = () => { price: "₹150-250", rating: 5, reviewCount: "200+", - imageSrc: "http://img.b2bpic.net/free-photo/cups-coffee-table_23-2148900626.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/cups-coffee-table_23-2148900626.jpg?_wi=3", imageAlt: "Specialty coffee collection on wooden table", }, { @@ -96,7 +96,7 @@ const GalleryPage = () => { price: "₹120-200", rating: 5, reviewCount: "150+", - imageSrc: "http://img.b2bpic.net/free-photo/delicious-plum-pie-with-chemex-coffee-ingredients-with-fabric-wooden-table-with-fabric_181624-27722.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/delicious-plum-pie-with-chemex-coffee-ingredients-with-fabric-wooden-table-with-fabric_181624-27722.jpg?_wi=3", imageAlt: "Fresh artisan pastries with coffee setup", }, { @@ -106,7 +106,7 @@ const GalleryPage = () => { price: "₹200-350", rating: 5, reviewCount: "120+", - imageSrc: "http://img.b2bpic.net/free-photo/high-angle-sandwich-with-vegetables_23-2148454710.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/high-angle-sandwich-with-vegetables_23-2148454710.jpg?_wi=3", imageAlt: "Gourmet sandwich with fresh ingredients", }, ]} -- 2.49.1 From 6bf9e113f8423b47c0c188df9998864f308eba79 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 08:09:32 +0000 Subject: [PATCH 4/6] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 47 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..454aead 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Libre_Baskerville } 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"; +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 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: "Suto Cafe Sambhajinagar | Best Coffee & Vibes", + description: "Discover Suto Cafe in Aurangpura - your favorite local cafe for specialty coffee, pastries & great vibes. 4.7★ rated. Open 7 AM-10 PM. Call now: +918888999888", + keywords: "cafe sambhajinagar, coffee shop aurangpura, best cafe near me, cozy cafe aurangabad, specialty coffee sambhajinagar, cafe vibes local favorite", + metadataBase: new URL("https://sutocafe.com"), + alternates: { + canonical: "https://sutocafe.com", + }, + openGraph: { + title: "Suto Cafe - Where Every Sip Meets a Vibe", + description: "Join 250+ happy customers at the best cafe in Sambhajinagar. Specialty coffee, artisan pastries, cozy ambience. Visit us today!", + url: "https://sutocafe.com", + siteName: "Suto Cafe", + type: "website", + images: [ + { + url: "https://sutocafe.com/og-image.jpg", + alt: "Suto Cafe interior ambience and coffee", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Suto Cafe - Best Coffee in Sambhajinagar", + description: "Specialty coffee, cozy vibes, artisan pastries. Your favorite local cafe in Aurangpura!", + images: ["https://sutocafe.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -32,7 +65,9 @@ export default function RootLayout({ return ( - + {children}