From b6fecfc1eaafef340e5f9917831ba2634ad33023 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 14:04:43 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++++++------------------------------------ 1 file changed, 10 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 38293d3..8b0141a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Luxury Travel Agency | Wanderlux", description: "Discover exclusive, curated travel experiences to the world's most luxurious destinations. Bespoke itineraries, 24/7 concierge service, and unforgettable journeys.", keywords: "luxury travel, travel agency, exclusive destinations, bespoke itineraries, luxury vacation, travel concierge", openGraph: { - title: "Wanderlux - Luxury Travel Curated", description: "Hand-selected luxury destinations and personalized travel experiences for the discerning traveler.", siteName: "Wanderlux", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/overwater-bungalow-tropical-beach-with-clear-blue-water_9975-32822.jpg", alt: "Luxury travel destination"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Wanderlux - Exclusive Travel Experiences", description: "Discover luxury journeys to the world's most beautiful destinations.", images: ["http://img.b2bpic.net/free-photo/overwater-bungalow-tropical-beach-with-clear-blue-water_9975-32822.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: "S.S Tours & Travels - Premium Car Rental & Tour Services in Nashik", description: "Reliable taxi services, self-drive cars, and comfortable travel solutions with trusted service and affordable pricing in Nashik. Car Rental in Nashik, Taxi Service Nashik, Self Drive Car Nashik, Tours and Travels Nashik, Tempo Traveller Nashik", keywords: "Car Rental Nashik, Taxi Service Nashik, Self Drive Car Nashik, Tours and Travels Nashik, Tempo Traveller Nashik, Premium Travel Services", openGraph: { + title: "S.S Tours & Travels - Premium Car Rental & Tour Services in Nashik", description: "Reliable taxi services, self-drive cars, and comfortable travel solutions with trusted service and affordable pricing", type: "website"}, }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +