diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 74db3a1..2faaf14 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,57 +1,18 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Montserrat } 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 montserrat = Montserrat({
- variable: "--font-montserrat", subsets: ["latin"],
-});
export const metadata: Metadata = {
- title: "Tokyo Massage Spa - Therapeutic Massage in Yuma, AZ", description: "Premium massage therapy in Yuma, AZ. Licensed therapists offering Swedish, deep tissue, and hot stone treatments. Book your relaxing session now. Call (928) 785-4532.", keywords: "massage spa Yuma AZ, therapeutic massage, Swedish massage, deep tissue massage, hot stone therapy, wellness spa, stress relief, relaxation", metadataBase: new URL("https://tokyomassagespa.com"),
- alternates: {
- canonical: "https://tokyomassagespa.com"},
- openGraph: {
- title: "Tokyo Massage Spa - Therapeutic Massage in Yuma, AZ", description: "Experience premium therapeutic massage in a serene environment. Licensed therapists, personalized care, and transformative wellness.", url: "https://tokyomassagespa.com", siteName: "Tokyo Massage Spa", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/essential-table-spa-decorative-body_1220-1442.jpg", alt: "Tokyo Massage Spa - Premium Therapeutic Services"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Tokyo Massage Spa - Therapeutic Massage in Yuma, AZ", description: "Book your therapeutic massage session today. Premium wellness treatments in Yuma.", images: ["http://img.b2bpic.net/free-photo/essential-table-spa-decorative-body_1220-1442.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Tokyo Massage Spa - Professional Therapeutic Massage in Yuma, AZ", description: "Experience therapeutic healing and rejuvenation at Tokyo Massage Spa in Yuma, AZ. Professional massage therapy including deep tissue, lymphatic, hot stone, and couples massages. 5.0 rating from 350+ reviews. Call (928) 785-4532 to book.", keywords: "massage therapy, spa, deep tissue massage, hot stone massage, lymphatic massage, couples massage, Yuma Arizona, wellness"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-