From 20b5c03101618751654a194d1215193ec1dd0deb Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 21:30:37 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 +++++----------------------------------------- 1 file changed, 5 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42d0278..38e95e6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,16 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "Serenity Massage | Professional Therapeutic Massage Services", description: "Experience ultimate relaxation with our holistic massage therapies. Expert therapists offering Swedish massage, hot stone therapy, and aromatherapy treatments.", keywords: "massage therapy, wellness, relaxation, Swedish massage, hot stone therapy, aromatherapy, stress relief, healing", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Serenity Massage | Your Wellness Sanctuary", description: "Discover transformative massage therapies designed to restore your body and mind.", type: "website", siteName: "Serenity Massage", images: [ - { - url: "http://img.b2bpic.net/free-photo/female-getting-professional-massage-beauty-spa-salon_181624-54510.jpg", alt: "Serenity Massage - Therapeutic wellness experience"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Serenity Massage | Professional Therapeutic Services", description: "Experience ultimate relaxation and wellness with our expert massage therapists.", images: ["http://img.b2bpic.net/free-photo/female-getting-professional-massage-beauty-spa-salon_181624-54510.jpg"], - }, -}; + title: "Serenity Massage - Premium Therapeutic Massage Services", description: "Experience ultimate relaxation with our holistic massage therapies designed to restore your body and mind."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}