Merge version_2 into main #6
@@ -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" }]}
|
||||
|
||||
Reference in New Issue
Block a user