From ded531dc5be9e67a9f5a609e9cd5eaeadf95c749 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 08:54:30 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1395 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1395 insertions(+) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e69de29..d9373e7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -0,0 +1,1395 @@ +import type { Metadata } from "next"; +import { Geist, Geist_Mono } from "next/font/google"; +import "./globals.css"; + +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], +}); + +export const metadata: Metadata = { + title: "Serenity Spa - Premium Wellness & Massage Therapy", description: "Discover premium massage therapy and wellness services at Serenity Spa. Experience Thai massage, Swedish massage, and aromatherapy in Koramangala."}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + + {children} + +