|
|
|
@@ -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>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|