diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 96c3838..3423b1b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,46 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { Inter_Tight } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Professional Massage Therapy & Wellness Services", description: "Expert therapeutic massage treatments to relieve tension, enhance wellness, and bring balance to your life. Book your session today.", keywords: "massage therapy, therapeutic massage, spa treatments, wellness, relaxation, professional massage", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Professional Massage Therapy & Wellness Services", description: "Experience transformative healing with our certified massage therapists. Personalized treatments for relaxation and wellness.", url: "https://serenity-massage.com", siteName: "Serenity Massage", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/young-woman-practicing-yoga_72229-409.jpg", alt: "Professional massage therapy studio"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Professional Massage Therapy & Wellness", description: "Certified therapists offering personalized therapeutic massage for healing and relaxation.", images: ["http://img.b2bpic.net/free-photo/young-woman-practicing-yoga_72229-409.jpg"], - }, -}; + title: "Serenity Massage - Professional Therapeutic Massage Services", description: "Experience therapeutic massage treatments designed to relieve tension, enhance wellness, and bring balance to your life. Expert therapists dedicated to your healing journey."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +