From 34e9aaf60a8d08f3552b498bacf31908883a06df Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 11:38:13 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b6280f..f1a6afe 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } 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 geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Wanderlux | Luxury Travel Agency | Curated Journeys", description: "Experience extraordinary travel with Wanderlux. Curated destinations, private guides, and exclusive access to the world's most luxurious experiences.", keywords: "luxury travel, travel agency, curated journeys, exclusive travel experiences, luxury vacations, destination travel", metadataBase: new URL("https://wanderlux.com"), - alternates: { - canonical: "https://wanderlux.com"}, - openGraph: { - title: "Wanderlux | Luxury Travel Agency", description: "Discover extraordinary journeys crafted by luxury travel experts.", url: "https://wanderlux.com", siteName: "Wanderlux", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/luxury-beach-resort-bungalow-near-endless-pool-sea-sunset-evening-tropical-island-summer_505751-5759.jpg", alt: "luxury travel exotic destination paradise beach travel"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Wanderlux | Luxury Travel Agency", description: "Experience extraordinary journeys curated by luxury travel experts.", images: [ - "http://img.b2bpic.net/free-photo/luxury-beach-resort-bungalow-near-endless-pool-sea-sunset-evening-tropical-island-summer_505751-5759.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Wanderlux - Luxury Travel Experiences", description: "Discover extraordinary journeys crafted by luxury travel experts. From hidden gems to iconic destinations, we design unforgettable experiences tailored to your desires."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +