From d869090bc17c6ea8480e36ef8b10588dc76cef78 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 07:06:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 46 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 34 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 65daab8..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Serenity Wellness Studio - Self Care & Relaxation", description: "Discover holistic wellness services including massage therapy, yoga, and facial treatments. Your personal sanctuary for self-care and rejuvenation.", keywords: "self care, wellness, spa, massage therapy, yoga, meditation, relaxation", openGraph: { - title: "Serenity Wellness Studio - Transform Your Wellness Journey", description: "Experience personalized wellness treatments designed to rejuvenate your mind, body, and spirit.", url: "https://serenity-wellness.com", siteName: "Serenity", type: "website"}, - twitter: { - card: "summary_large_image", title: "Serenity Wellness Studio", description: "Discover your path to wellness with our holistic self-care services."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +