Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 08cce4a15a | |||
| a371041366 | |||
| f51bf705d7 | |||
| 5262152cb7 | |||
| 3746aa06d9 | |||
| 09174da05f | |||
| 7175a92829 | |||
| 83a85fd2c2 |
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -78,6 +78,9 @@ export default function LandingPage() {
|
||||
{
|
||||
type: "image", src: "http://img.b2bpic.net/free-vector/flat-design-time-travel-labels_23-2149199925.jpg", alt: "Luxury travel seal"
|
||||
},
|
||||
{
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/gold-stars-isolated-white-background_181624-1155.jpg", alt: "Certification badge"
|
||||
},
|
||||
]}
|
||||
useInvertedBackground={true}
|
||||
buttons={[{ text: "View Our Collections", href: "features" }]}
|
||||
@@ -91,13 +94,13 @@ export default function LandingPage() {
|
||||
tag="Premium Collections"
|
||||
features={[
|
||||
{
|
||||
title: "European Elegance", description: "Experience the finest castles, vineyards, and cultural landmarks across France, Italy, and Switzerland with private guides and exclusive access", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-attractive-woman-elegant-dress-straw-hat-summer-style-fashion-trend-vacation-smiling-stylish-accessories-sunglasses-posing-tropical-villa-bali_285396-5700.jpg", imageAlt: "Luxury European villa with vineyard views", buttons: [{ text: "Explore", href: "#" }],
|
||||
title: "European Elegance", description: "Experience the finest castles, vineyards, and cultural landmarks across France, Italy, and Switzerland with private guides and exclusive access", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-attractive-woman-elegant-dress-straw-hat-summer-style-fashion-trend-vacation-smiling-stylish-accessories-sunglasses-posing-tropical-villa-bali_285396-5700.jpg", imageAlt: "Luxury European villa with vineyard views", button: { text: "Explore", href: "#" },
|
||||
},
|
||||
{
|
||||
title: "Tropical Paradise", description: "Retreat to pristine island destinations offering overwater bungalows, private beaches, and world-class diving experiences", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-beach-chairs-with-umbrella-around-outdoor-swimming-poo_1232-3087.jpg", imageAlt: "Crystal clear tropical waters with bungalow resort", buttons: [{ text: "Explore", href: "#" }],
|
||||
title: "Tropical Paradise", description: "Retreat to pristine island destinations offering overwater bungalows, private beaches, and world-class diving experiences", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-beach-chairs-with-umbrella-around-outdoor-swimming-poo_1232-3087.jpg", imageAlt: "Crystal clear tropical waters with bungalow resort", button: { text: "Explore", href: "#" },
|
||||
},
|
||||
{
|
||||
title: "Mountain Sanctuaries", description: "Discover high-altitude luxury lodges with breathtaking views, spa facilities, and access to exclusive mountain trails and adventure activities", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-green-trees-with-house-mountain-distance-dolomite-italy_181624-18678.jpg", imageAlt: "Luxury mountain resort with alpine scenery", buttons: [{ text: "Explore", href: "#" }],
|
||||
title: "Mountain Sanctuaries", description: "Discover high-altitude luxury lodges with breathtaking views, spa facilities, and access to exclusive mountain trails and adventure activities", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-green-trees-with-house-mountain-distance-dolomite-italy_181624-18678.jpg", imageAlt: "Luxury mountain resort with alpine scenery", button: { text: "Explore", href: "#" },
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
|
||||
Reference in New Issue
Block a user