4 Commits

Author SHA1 Message Date
0d568a842c Update src/app/layout.tsx 2026-03-07 19:25:38 +00:00
963def9d33 Update src/app/page.tsx 2026-03-07 19:24:43 +00:00
8bf5c54ea8 Update src/app/layout.tsx 2026-03-07 19:24:42 +00:00
79b5f8a01d Merge version_2 into main
Merge version_2 into main
2026-03-07 19:23:04 +00:00
2 changed files with 28 additions and 42 deletions

View File

@@ -1,54 +1,41 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Inter_Tight } from "next/font/google";
import { Inter } from "next/font/google"; import "./styles/variables.css";
import { Open_Sans } from "next/font/google"; import "./styles/base.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const interTight = Inter_Tight({
variable: "--font-halant", subsets: ["latin"], variable: "--font-inter-tight", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
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: "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: { 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."};
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>
<ServiceWrapper> <body className={`${interTight.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`} <script
> dangerouslySetInnerHTML={{
<Tag /> __html: `
{children} (function() {
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={{
__html: ` __html: `
@@ -1416,7 +1403,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

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