From 8abdfc253d98f5d9ade8d56e98888edc8508a467 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 23:10:36 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++--------------------------------------- 1 file changed, 8 insertions(+), 46 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d067461..ad285b5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,22 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -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"; +import "./styles/variables.css"; +import "./styles/base.css"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Massage Therapy in Lake Charles, LA | Lotus Massage & Spa LLC", description: "Professional licensed massage therapy in Lake Charles, LA. Swedish, deep tissue, and relaxation massage services. 5-star rated. Call (337) 660-5327 to book your appointment.", keywords: "massage Lake Charles, massage therapist Lake Charles LA, deep tissue massage, Swedish massage, spa Lake Charles", metadataBase: new URL("https://www.lotusmassageandspa.local"), - alternates: { - canonical: "https://www.lotusmassageandspa.local" - }, - openGraph: { - title: "Lotus Massage & Spa LLC | Professional Massage Therapy", description: "Experience professional massage therapy in Lake Charles. Clean, welcoming environment with licensed therapist.", url: "https://www.lotusmassageandspa.local", siteName: "Lotus Massage & Spa LLC", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/spa-items-with-orchid_169016-3490.jpg", alt: "Lotus Massage & Spa interior" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Lotus Massage & Spa LLC | Professional Massage Therapy", description: "Professional massage therapy in Lake Charles, LA. Licensed therapist, 5-star rated.", images: ["http://img.b2bpic.net/free-photo/spa-items-with-orchid_169016-3490.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Lotus Massage & Spa", description: "Professional massage therapy in Lake Charles, LA"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}