Merge version_3 into main #5
@@ -19,7 +19,7 @@ export default function BlogPage() {
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
|
||||
@@ -1,40 +1,26 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Karla } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
const karla = Karla({
|
||||
variable: "--font-karla", subsets: ["latin"],
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Luxury Travel Boutique | Curated Journeys & Experiences", description: "Discover personalized luxury travel experiences. From tropical escapes to adventure expeditions, we craft unforgettable journeys tailored to your dreams.", keywords: "luxury travel, boutique travel agency, curated vacations, travel experiences, adventure travel, luxury resorts", openGraph: {
|
||||
title: "Wanderlust Boutique | Luxury Travel Experiences", description: "Discover personalized luxury travel experiences. From tropical escapes to adventure expeditions, we craft unforgettable journeys.", siteName: "Wanderlust Boutique", type: "website", images: [
|
||||
{
|
||||
url: "https://img.b2bpic.net/free-photo/travel-relaxation-umbrella-luxury-hotels_1253-653.jpg", alt: "Luxury travel destination"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Wanderlust Boutique | Luxury Travel", description: "Curated luxury travel experiences and personalized journeys.", images: ["https://img.b2bpic.net/free-photo/travel-relaxation-umbrella-luxury-hotels_1253-653.jpg"]
|
||||
}
|
||||
};
|
||||
title: "Wanderlust Boutique", description: "Curated luxury travel experiences"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${karla.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.variable}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1316,7 +1302,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@ export default function TravelPage() {
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
|
||||
@@ -76,7 +76,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
@@ -120,7 +120,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
@@ -171,7 +171,7 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
|
||||
@@ -26,7 +26,7 @@ export default function ShopPage() {
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
@@ -69,7 +69,7 @@ export default function ShopPage() {
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="solid"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="shadow"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
|
||||
Reference in New Issue
Block a user