Update src/app/layout.tsx

This commit is contained in:
2026-01-17 17:30:05 +00:00
parent 4aa5b27a03
commit c2e37b5cdf

View File

@@ -1,32 +1,27 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Cormorant_Garamond, Inter } from "next/font/google"; import { Sora } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const cormorantGaramond = Cormorant_Garamond({ const sora = Sora({
variable: "--font-cormorant-garamond", subsets: ["latin"], variable: "--font-sora", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Luxury Jungle Escape & Modern Mansion Retreat", description: "Experience the epitome of luxury at our modern jungle escape and mansion retreat. World-class amenities, sophisticated design, and natural serenity combined.", keywords: "luxury mansion, jungle escape, resort, wellness, spa, premium accommodations, tropical paradise", metadataBase: new URL("https://www.luxuryjungleescape.com"), title: "Wellness Lounge Day Spa | Luxury Spa in San Diego", description: "Experience serenity at Wellness Lounge Day Spa in Mission Bay. Luxury massages, facials, steam rooms, yoga, and wellness treatments for complete relaxation.", keywords: "day spa, massage therapy, facial treatments, wellness, relaxation, San Diego, yoga classes, steam room", metadataBase: new URL("https://www.wellnessloungedayspa.com"),
alternates: { alternates: {
canonical: "https://www.luxuryjungleescape.com" canonical: "https://www.wellnessloungedayspa.com"
}, },
openGraph: { openGraph: {
title: "Luxury Jungle Escape & Modern Mansion Retreat", description: "Discover ultimate luxury with natural beauty. An exclusive modern mansion nestled in lush jungle surroundings.", url: "https://www.luxuryjungleescape.com", siteName: "Luxury Jungle Escape", type: "website", images: [ title: "Wellness Lounge Day Spa | Your Calm Escape", description: "Find serenity at Wellness Lounge Day Spa. Luxury spa treatments, yoga, and relaxation in beautiful Mission Bay, San Diego.", url: "https://www.wellnessloungedayspa.com", siteName: "Wellness Lounge Day Spa", type: "website", images: [
{ {
url: "/placeholders/placeholder1.webp", alt: "Luxury modern mansion with jungle backdrop" url: "https://img.b2bpic.net/free-photo/amazing-view-waterfall_72229-1274.jpg", alt: "Wellness Lounge Day Spa waterfall and relaxation"
} }
] ]
}, },
twitter: { twitter: {
card: "summary_large_image", title: "Luxury Jungle Escape & Modern Mansion Retreat", description: "Experience sophistication meets nature in our exclusive luxury retreat.", images: ["/placeholders/placeholder1.webp"] card: "summary_large_image", title: "Wellness Lounge Day Spa | Luxury Spa in San Diego", description: "Experience serenity at Wellness Lounge Day Spa. Massages, facials, steam rooms, and yoga by the bay.", images: ["https://img.b2bpic.net/free-photo/serene-spa-room_23-2151934180.jpg"]
}, },
robots: { robots: {
index: true, index: true,
@@ -43,7 +38,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={`${cormorantGaramond.variable} ${inter.variable}`} className={sora.variable}
> >
<Tag /> <Tag />
{children} {children}
@@ -1269,4 +1264,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }