diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ed7f103..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } 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"], -}); - -export const metadata: Metadata = { - title: "Serenity Spa Koramangala - Premium Massage & Wellness", description: "Experience authentic massage therapy and wellness services at Serenity Spa in Koramangala. Expert therapists, serene ambiance, and holistic healing practices.", keywords: "massage spa Koramangala, Thai massage, wellness therapy, relaxation treatment, body massage, aromatherapy, stress relief", metadataBase: new URL("https://serenityspa-koramangala.com"), - alternates: { - canonical: "https://serenityspa-koramangala.com"}, - openGraph: { - title: "Serenity Spa - Wellness & Massage Therapy", description: "Discover premium wellness and massage services in Koramangala. Book your healing session today.", url: "https://serenityspa-koramangala.com", siteName: "Serenity Spa", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/still-life-spa_23-2148000417.jpg", alt: "Serenity Spa Wellness Center"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Serenity Spa - Premium Wellness", description: "Experience tranquility with our expert massage and wellness services.", images: ["http://img.b2bpic.net/free-photo/still-life-spa_23-2148000417.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -