diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b68cfe8..5ca3a26 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -53,7 +53,7 @@ export default function ContactPage() { description="Have questions about our tempo traveller rental services? Our friendly team is here to help you plan the perfect journey across Karnataka and South India." subdescription="Whether you're planning a family trip, corporate outing, or adventure getaway, we're just a message away. Reach out via WhatsApp, phone, or email - we respond within 1 hour!" icon={Heart} - imageSrc="http://img.b2bpic.net/free-photo/workplace-violence-taking-place-colleagues_23-2149361875.jpg" + imageSrc="http://img.b2bpic.net/free-photo/workplace-violence-taking-place-colleagues_23-2149361875.jpg?_wi=2" imageAlt="YourName Tours & Travels professional team ready to help" mediaAnimation="blur-reveal" useInvertedBackground={false} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0a803b2..65118c3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,60 @@ 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"], }); +export const metadata: Metadata = { + title: "YourName Tours & Travels | Comfortable Tempo Traveller Rentals in Bangalore", + description: "Book affordable, comfortable tempo traveller rentals for family and group trips in Karnataka and South India. Professional drivers, AC vehicles, 5-star service. WhatsApp now!", + keywords: "tempo traveller rental Bangalore, family trip transportation, group travel Karnataka, comfortable AC vehicle rental, South India tours, affordable tempo rental", + metadataBase: new URL("https://yourname-tours.com"), + alternates: { + canonical: "https://yourname-tours.com", + }, + openGraph: { + title: "YourName Tours & Travels | Premium Tempo Traveller Rentals", + description: "Comfortable and safe tempo traveller rentals for family and group trips across Karnataka and South India.", + siteName: "YourName Tours & Travels", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/enjoying-comfortable-interior-girl-modern-car-salon-daytime-indoors-buying-new-vehicle_146671-16476.jpg", + alt: "YourName Tours & Travels - Comfortable Tempo Traveller", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "YourName Tours & Travels | Tempo Traveller Rentals", + description: "Book safe, comfortable group travel with professional drivers and 5-star service.", + images: ["http://img.b2bpic.net/free-photo/enjoying-comfortable-interior-girl-modern-car-salon-daytime-indoors-buying-new-vehicle_146671-16476.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +63,9 @@ export default function RootLayout({ return ( - + {children}