Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-06 09:58:27 +00:00
2 changed files with 9 additions and 41 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -157,7 +157,7 @@ export default function LandingPage() {
animationType="blur-reveal"
features={[
{
id: "1", title: "Michelin-Starred Culinary Journey", description: "Dine at the world's finest restaurants with private chef experiences and wine pairings from prestigious vintners.", tag: "Gastronomic", imageSrc: "http://img.b2bpic.net/free-photo/front-view-cook-preparing-meal-designing-meal-inside-plate-fry-meat-food-meal_140725-26012.jpg"
id: "1", title: "Michelin-Starred Culinary Journey", description: "Dine at the world's finest restaurants with private chef experiences and wine pairings from prestigious vintners.", tag: "Gastronomic", imageSrc: "http://img.b2bpic.net/free-photo/front-view-cook-preparing-meal-designing-meal-inside-plate-fry-meat-food_140725-26012.jpg"
},
{
id: "2", title: "African Safari Adventure", description: "Witness Africa's greatest wildlife up close with luxury lodge stays, expert guides, and exclusive photography opportunities.", tag: "Adventure", imageSrc: "http://img.b2bpic.net/free-photo/woman-with-man-photographing-while-traveling-vehicle_107420-9769.jpg"
@@ -198,7 +198,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplitForm
title="Plan Your Luxury Journey"
description="Tell us about your travel dreams. Our expert team will craft a bespoke itinerary tailored to your preferences and desires."
description="Share your vision in 2 minutes. Our concierge team will respond within 24 hours with a custom proposal"
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{