Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #6.
This commit is contained in:
2026-03-10 07:38:15 +00:00
2 changed files with 8 additions and 39 deletions

View File

@@ -1,47 +1,17 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito_Sans } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans", subsets: ["latin"],
});
import "@/styles/globals.css";
export const metadata: Metadata = {
title: "Luxury Travel Agency | Curated Experiences Worldwide", description: "Wanderlux creates unforgettable luxury travel experiences. Exclusive destinations, private accommodations, and bespoke itineraries for discerning travelers.", keywords: "luxury travel agency, exclusive destinations, private yacht charters, bespoke travel experiences, luxury vacations", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Wanderlux - Luxury Travel Agency", description: "Discover the world's most exclusive destinations through expertly curated travel experiences designed for discerning travelers.", type: "website", siteName: "Wanderlux"},
};
title: "THE ECHO - Luxury Travel Experiences", description: "Discover the world's most exclusive destinations through expertly curated travel experiences designed for the discerning traveler."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1409,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -235,7 +235,7 @@ export default function LandingPage() {
imageAlt="Luxury travel consultation meeting"
mediaAnimation="slide-up"
mediaPosition="right"
buttonText="Get in Touch"
buttonText="Plan My Journey"
/>
</div>
@@ -265,4 +265,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}