From d48a77269799bd0d0e07e69c431b749700dc8244 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 09:17:30 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 721e352..0c0e6a9 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -129,37 +129,37 @@ export default function AboutPage() { { id: "1", name: "Rajesh Patel", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-hipster-woman-traveling-around-world-with-backpack-smiling-happy-positive-listening-music-headphones-blue-tropical-ocean-background-sunglasses-sexy-summer-vacation_285396-6058.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-hipster-woman-traveling-around-world-with-backpack-smiling-happy-positive-listening-music-headphones-blue-tropical-ocean-background-sunglasses-sexy-summer-vacation_285396-6058.jpg?_wi=2", imageAlt: "Happy traveler Rajesh Patel", }, { id: "2", name: "Priya Sharma", - imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-beautiful-girl-wearing-olive-green-t-shirt-putting-hand-chin-isolated-pink-wall_141793-103266.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-beautiful-girl-wearing-olive-green-t-shirt-putting-hand-chin-isolated-pink-wall_141793-103266.jpg?_wi=2", imageAlt: "Happy traveler Priya Sharma", }, { id: "3", name: "Vikram Desai", - imageSrc: "http://img.b2bpic.net/free-photo/happy-young-man-shows-thumbs-up-takes-selfie-mobile-phone-poses-near-suitcase-blogger-goes_1258-270583.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-young-man-shows-thumbs-up-takes-selfie-mobile-phone-poses-near-suitcase-blogger-goes_1258-270583.jpg?_wi=2", imageAlt: "Happy traveler Vikram Desai", }, { id: "4", name: "Anjali Mehta", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-going-hiking-holding-ticket-white-background-air-tourist-forest-vacation-flight-trip-campus-mountain_179666-39189.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-female-going-hiking-holding-ticket-white-background-air-tourist-forest-vacation-flight-trip-campus-mountain_179666-39189.jpg?_wi=2", imageAlt: "Happy traveler Anjali Mehta", }, { id: "5", name: "Suresh Kapoor", - imageSrc: "http://img.b2bpic.net/free-photo/handsome-smiling-young-man-sitting-office-coworking_171337-17642.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/handsome-smiling-young-man-sitting-office-coworking_171337-17642.jpg?_wi=2", imageAlt: "Happy traveler Suresh Kapoor", }, { id: "6", name: "Deepika Singh", - imageSrc: "http://img.b2bpic.net/free-photo/happy-pretty-young-woman-posing-camera-park_1262-20239.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-pretty-young-woman-posing-camera-park_1262-20239.jpg?_wi=2", imageAlt: "Happy traveler Deepika Singh", }, ]} -- 2.49.1 From 95fc32a4534b807cc61b36768ca286628ea21cbe Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 09:17:31 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 39 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..714d098 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,55 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; import { 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: "Satva Tours and Travels - Premium Domestic Group Tours India", + description: "Explore India's wonders with Satva Tours. Premium family-friendly group tours, comfortable AC hotels, pure vegetarian meals, and unforgettable cultural experiences across India.", + keywords: "domestic tours India, group travel, family vacation, Gujarat travel agency, Indian tour packages, cultural tours", + metadataBase: new URL("https://satvatorurs.com"), + alternates: { + canonical: "https://satvatorurs.com", + }, + openGraph: { + title: "Satva Tours and Travels - Your Family's Perfect Indian Adventure", + description: "Comfortable journeys, pure vegetarian meals, and unforgettable memories. Book your family getaway with Satva Tours.", + url: "https://satvatorurs.com", + siteName: "Satva Tours and Travels", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/nomad-family-traveling-nature_23-2149651501.jpg", + alt: "Satva Tours - India's Best Family Travel Experience", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Satva Tours and Travels - Premium Group Tours", + description: "Explore India with comfort, culture, and care. Family-friendly domestic tours across India.", + images: ["http://img.b2bpic.net/free-photo/nomad-family-traveling-nature_23-2149651501.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +58,9 @@ export default function RootLayout({ return ( - + {children}