6 Commits

Author SHA1 Message Date
bcacfca196 Update src/app/page.tsx 2026-03-07 08:54:31 +00:00
ded531dc5b Update src/app/layout.tsx 2026-03-07 08:54:30 +00:00
d6ccd0a4e6 Merge version_2 into main
Merge version_2 into main
2026-03-07 08:52:35 +00:00
3af0e6ac76 Update src/app/page.tsx 2026-03-07 08:52:31 +00:00
5330a82669 Update src/app/layout.tsx 2026-03-07 08:52:30 +00:00
8dfbc44895 Merge version_1 into main
Merge version_1 into main
2026-03-07 08:50:21 +00:00
2 changed files with 13 additions and 38 deletions

View File

@@ -1,52 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Serenity Spa Koramangala - Premium Massage & Wellness", description: "Experience authentic massage therapy and wellness services at Serenity Spa in Koramangala. Expert therapists, serene ambiance, and holistic healing practices.", keywords: "massage spa Koramangala, Thai massage, wellness therapy, relaxation treatment, body massage, aromatherapy, stress relief", metadataBase: new URL("https://serenityspa-koramangala.com"),
alternates: {
canonical: "https://serenityspa-koramangala.com"},
openGraph: {
title: "Serenity Spa - Wellness & Massage Therapy", description: "Discover premium wellness and massage services in Koramangala. Book your healing session today.", url: "https://serenityspa-koramangala.com", siteName: "Serenity Spa", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/still-life-spa_23-2148000417.jpg", alt: "Serenity Spa Wellness Center"},
],
},
twitter: {
card: "summary_large_image", title: "Serenity Spa - Premium Wellness", description: "Experience tranquility with our expert massage and wellness services.", images: ["http://img.b2bpic.net/free-photo/still-life-spa_23-2148000417.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Serenity Spa - Premium Wellness & Massage Therapy", description: "Discover premium massage therapy and wellness services at Serenity Spa. Experience Thai massage, Swedish massage, and aromatherapy in Koramangala."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1414,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -157,7 +157,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactText
text="Ready to experience ultimate relaxation? Book your personalized wellness session today and step into a world of tranquility and healing."
text="Ready to experience ultimate relaxation? Book your 60-minute session today—first-time clients receive 15% off. Over 5,000 satisfied clients trust Serenity Spa for their wellness journey."
animationType="entrance-slide"
background={{ variant: "plain" }}
useInvertedBackground={false}