From 8c6757c564894fe722d4ac7f4c5ad3394a938ec6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 09:58:22 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 46 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dcf4c9e..4d07ba0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,20 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Luxury Travel Agency | Bespoke Travel Experiences", description: "Discover curated luxury travel experiences designed for discerning travelers. Private jets, yacht charters, exclusive destinations, and bespoke services worldwide.", keywords: "luxury travel, travel agency, bespoke itineraries, private jet charter, yacht charter, luxury destinations, exclusive experiences", metadataBase: new URL("https://luxejourneys.com"), - alternates: { - canonical: "https://luxejourneys.com"}, - openGraph: { - title: "Luxury Travel Agency | Luxe Journeys", description: "Experience the pinnacle of luxury travel with our curated destinations and exclusive services", url: "https://luxejourneys.com", siteName: "Luxe Journeys", type: "website", images: [ - { - url: "https://luxejourneys.com/og-image.jpg", alt: "Luxury travel destinations"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Luxury Travel Agency | Luxe Journeys", description: "Curated luxury travel experiences for the most discerning travelers", images: ["https://luxejourneys.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Luxe Journeys - Curated Luxury Travel Experiences", description: "Experience world-class luxury travel with Luxe Journeys. Curated destinations, bespoke services, and unforgettable experiences for the most discerning travelers."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}