From ec70fa87973679017eef40cfb594a50a5732b7b6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 16:39:46 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 61 +++++++++++----------------------------------- 1 file changed, 14 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 54d4fb0..1179670 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Source_Sans_3 } from "next/font/google"; +import localFont from "next/font/local"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); +const geistSans = localFont({ + src: "./fonts/GeistVF.woff2", variable: "--font-geist-sans", weight: "100 900"}); +const geistMono = localFont({ + src: "./fonts/GeistMonoVF.woff2", variable: "--font-geist-mono", weight: "100 900"}); export const metadata: Metadata = { - title: "Luxe Spa | Premium Wellness Experience", description: "Experience luxury redefined. Book seamless spa services with zero friction. Exclusive wellness treatments curated for affluent professionals seeking premium self-care.", keywords: "luxury spa, premium wellness, booking, facial, massage therapy, spa services, wellness retreat", metadataBase: new URL("https://luxespa.com"), - alternates: { - canonical: "https://luxespa.com" - }, - openGraph: { - title: "Luxe Spa | Luxury Redefined Effortlessly", description: "Experience premium service with zero friction. Instant booking, curated exclusively for you.", url: "https://luxespa.com", siteName: "Luxe Spa", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/spa-concept-with-woman-with-creme-face_23-2147817010.jpg", alt: "Luxury spa experience" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Luxe Spa | Premium Wellness", description: "Luxury redefined. Book your spa experience instantly.", images: ["http://img.b2bpic.net/free-photo/candle-roses-cozy-interior-with-wide-space-calm-branding_169016-71507.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Luxe Spa - Premium Luxury & Wellness", description: "Experience premium service with zero friction. Instant booking, curated exclusively for you. Seamless elegance in every interaction."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +