From 32d794323c448c8502daab63df5807d997affdc7 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 16:32:11 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1408 +------------------------------------------- 1 file changed, 8 insertions(+), 1400 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1cbb5e..332bcd0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1412 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "WanderLux Tours - Unforgettable Global Adventures", description: "Discover breathtaking destinations worldwide with WanderLux Tours. Expert-guided trips to Africa, Asia, Europe and beyond. Book your adventure today.", keywords: "travel tours, adventure travel, guided tours, vacation packages, global destinations, safari tours, mountain trekking", openGraph: { - title: "WanderLux Tours - Unforgettable Global Adventures", description: "Discover breathtaking destinations with expert-guided tours across six continents. Book your next adventure today.", siteName: "WanderLux Tours", type: "website"}, - twitter: { - card: "summary_large_image", title: "WanderLux Tours - Unforgettable Adventures", description: "Explore the world's most captivating destinations with WanderLux Tours."}, -}; + title: "Everest Travel - Your Adventure Awaits", description: "Discover extraordinary travel experiences with Everest Travel."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -