diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a76f2a7..f38e06c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ 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 "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Luxury Travel Agency - Bespoke Journeys Worldwide", description: "Experience the world's most exclusive destinations with Luxe Journeys. Bespoke travel planning, VIP services, and unforgettable luxury experiences curated for discerning travelers.", keywords: "luxury travel agency, bespoke travel packages, exclusive destinations, VIP travel services, luxury vacation planning", metadataBase: new URL("https://luxejourneys.com"), - alternates: { - canonical: "https://luxejourneys.com"}, - openGraph: { - title: "Luxe Journeys - Luxury Travel Experiences", description: "Discover curated luxury travel experiences and bespoke itineraries designed for the world's most discerning travelers.", url: "https://luxejourneys.com", siteName: "Luxe Journeys", images: [ - { - url: "http://img.b2bpic.net/free-photo/spa-salon-with-beach-view_53876-31335.jpg", alt: "Luxury Bali Resort"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "Luxe Journeys - Bespoke Travel Experiences", description: "Experience luxury travel at its finest with curated destinations and exclusive services.", images: ["http://img.b2bpic.net/free-photo/view-lyon-sunset-france_268835-11708.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Luxe Journeys", description: "Discover the world's most exclusive destinations and craft unforgettable experiences"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}