5 Commits

Author SHA1 Message Date
f907c8b043 Update src/app/page.tsx 2026-03-04 11:38:13 +00:00
34e9aaf60a Update src/app/layout.tsx 2026-03-04 11:38:13 +00:00
10df81a876 Merge version_1 into main
Merge version_1 into main
2026-03-04 11:37:23 +00:00
bf6cc661e0 Merge version_1 into main
Merge version_1 into main
2026-03-04 11:35:57 +00:00
a7443c73a5 Merge version_1 into main
Merge version_1 into main
2026-03-04 11:34:22 +00:00
2 changed files with 13 additions and 39 deletions

View File

@@ -1,52 +1,27 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
}); });
export const metadata: Metadata = { 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"), 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."};
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,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1415,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -188,7 +188,7 @@ export default function LandingPage() {
imageAlt="Luxury travel consultation" imageAlt="Luxury travel consultation"
mediaAnimation="slide-up" mediaAnimation="slide-up"
mediaPosition="right" mediaPosition="right"
buttonText="Start Planning" buttonText="Claim Your Free Consultation"
/> />
</div> </div>