Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f7b376f98c | |||
| 8c6757c564 | |||
| b258e9ebe2 | |||
| 45786ebc76 | |||
| d00db75ece |
@@ -1,51 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Manrope } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { DM_Sans } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const manrope = Manrope({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-manrope", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
|
||||||
variable: "--font-dm-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
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."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${manrope.variable} ${dmSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -157,7 +157,7 @@ export default function LandingPage() {
|
|||||||
animationType="blur-reveal"
|
animationType="blur-reveal"
|
||||||
features={[
|
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"
|
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">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
title="Plan Your Luxury Journey"
|
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={[
|
inputs={[
|
||||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user