From 5bbc373fe900f479aefe53dff6794fc4c5e80376 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 09:05:05 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c35ff46..8944eb7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Neha Tour & Travel - Rajasthan Tours & Taxi Services", description: "Premium tour packages and taxi services across Rajasthan. Book Jaipur sightseeing, Ajmer-Pushkar tours, airport pickups & outstation travel. WhatsApp +91-9602946928.", keywords: "Rajasthan tours, Jaipur taxi, tour packages, Ajmer Pushkar, airport transfer, honeymoon packages, Rajasthan travel", metadataBase: new URL("https://nehatourandtravel.com"), - alternates: { - canonical: "https://nehatourandtravel.com" - }, - openGraph: { - title: "Neha Tour & Travel - Explore Rajasthan with Premium Services", description: "Discover Rajasthan with trusted tour packages and comfortable taxi services. Book now on WhatsApp!", siteName: "Neha Tour & Travel", type: "website", images: [{ - url: "http://img.b2bpic.net/free-photo/close-up-entrance-courtyard-lions_1139-26.jpg", alt: "Hawa Mahal - Neha Tour & Travel" - }] - }, - twitter: { - card: "summary_large_image", title: "Neha Tour & Travel - Rajasthan Adventures Await", description: "Premium tours and taxi services across Rajasthan. Book your perfect journey now!", images: ["http://img.b2bpic.net/free-photo/panoramic-shot-erg-chebbi-dunes-sahara-desert-morocco_181624-9722.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Neha Tour & Travel", description: "Experience Rajasthan with premium taxi services and curated tour packages"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +