4 Commits

Author SHA1 Message Date
f3619800f1 Switch to version 2: modified src/app/page.tsx 2026-03-07 19:27:09 +00:00
66f83fd5f3 Switch to version 2: modified src/app/layout.tsx 2026-03-07 19:27:08 +00:00
af7d2322f5 Merge version_3 into main
Merge version_3 into main
2026-03-07 19:25:48 +00:00
ab0f8b8619 Merge version_3 into main
Merge version_3 into main
2026-03-07 19:24:48 +00:00
2 changed files with 42 additions and 28 deletions

View File

@@ -1,40 +1,53 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Inter_Tight } from "next/font/google"; import { Halant } from "next/font/google";
import "./styles/variables.css"; import { Inter } from "next/font/google";
import "./styles/base.css"; import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const interTight = Inter_Tight({ const halant = Halant({
variable: "--font-inter-tight", subsets: ["latin"], variable: "--font-halant", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Serenity Massage - Professional Therapeutic Massage Services", description: "Experience therapeutic massage treatments designed to relieve tension, enhance wellness, and bring balance to your life. Expert therapists dedicated to your healing journey."}; title: "Professional Massage Therapy & Wellness Services", description: "Expert therapeutic massage treatments to relieve tension, enhance wellness, and bring balance to your life. Book your session today.", keywords: "massage therapy, therapeutic massage, spa treatments, wellness, relaxation, professional massage", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Professional Massage Therapy & Wellness Services", description: "Experience transformative healing with our certified massage therapists. Personalized treatments for relaxation and wellness.", url: "https://serenity-massage.com", siteName: "Serenity Massage", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/young-woman-practicing-yoga_72229-409.jpg", alt: "Professional massage therapy studio"},
],
},
twitter: {
card: "summary_large_image", title: "Professional Massage Therapy & Wellness", description: "Certified therapists offering personalized therapeutic massage for healing and relaxation.", images: ["http://img.b2bpic.net/free-photo/young-woman-practicing-yoga_72229-409.jpg"],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: { }: Readonly<{
children: React.ReactNode; children: React.ReactNode;
}) { }>) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<body className={`${interTight.variable} antialiased`}> <ServiceWrapper>
{children} <body
<script className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
dangerouslySetInnerHTML={{ >
__html: ` <Tag />
(function() { {children}
try {
const theme = localStorage.getItem('theme') || 'light';
document.documentElement.setAttribute('data-theme', theme);
if (theme === 'dark') {
document.documentElement.classList.add('dark');
}
} catch (e) {}
})()
`,
}}
/>
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1403,6 +1416,7 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -96,7 +96,7 @@ export default function LandingPage() {
}, },
], ],
}} }}
containerClassName="py-5 px-10 md:py-5 md:px-10 lg:py-12 lg:px-12" containerClassName="py-10 md:py-16 lg:py-20"
/> />
</div> </div>