diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index bc2cc2d..9e62ef7 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,57 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Nunito_Sans } 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 inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const nunitoSans = Nunito_Sans({
- variable: "--font-nunito-sans", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Meraki Spa - Premium Wellness & Relaxation Treatments", description: "Discover tranquility at Meraki Spa. Experience personalized wellness treatments including massage, facials, and aromatherapy. Book your rejuvenating spa experience today.", keywords: "spa, massage, wellness, relaxation, facial, aromatherapy, therapy, self-care", metadataBase: new URL("https://www.merakispa.com"),
- alternates: {
- canonical: "https://www.merakispa.com"},
- openGraph: {
- title: "Meraki Spa - Wellness & Relaxation", description: "Transform your well-being with expert spa treatments at Meraki. Premium wellness services in a serene sanctuary.", url: "https://www.merakispa.com", siteName: "Meraki Spa", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/high-angle-view-beautiful-woman-having-head-massage-beauty-treatment-spa_637285-2192.jpg", alt: "Meraki Spa - Serene Wellness Environment"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Meraki Spa - Premium Wellness Treatments", description: "Discover tranquility and rejuvenation at Meraki Spa. Experience personalized wellness treatments.", images: ["http://img.b2bpic.net/free-photo/high-angle-view-beautiful-woman-having-head-massage-beauty-treatment-spa_637285-2192.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Meraki Spa - Wellness & Rejuvenation", description: "Discover tranquility and rejuvenation at Meraki Spa. Experience personalized wellness treatments designed to restore balance and inner peace."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-