From 9b33d67870f91c08dff9c84175dc00c2b05d87c0 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 01:34:57 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1434 +------------------------------------------- 1 file changed, 7 insertions(+), 1427 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 353846e..87eaa15 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1439 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", - subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional Facial Spa in Tlemcen | Mesoestetic", - description: "Luxury facial treatments and skincare services in Tlemcen. 5-star rated spa offering anti-aging, acne treatment, hydrating facials. Book your appointment today.", - keywords: "facial spa Tlemcen, skincare clinic Tlemcen, facial treatment, beauty spa, professional skincare, anti-aging facial", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Professional Facial Spa in Tlemcen", - description: "Luxury facial treatments and skincare services. 5-star rated. Book your professional facial treatment today.", - type: "website", - siteName: "Mesoestetic Tlemcen", - images: [ - { - url: "http://img.b2bpic.net/free-photo/beautician-spa-beauty-salon-applies-cream-client-s-face-girl-lies-cosmetology-table_343596-4276.jpg", - alt: "Professional Facial Spa Treatment", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Professional Facial Spa in Tlemcen", - description: "Luxury facial treatments and skincare services. 5-star rated clinic.", - images: [ - "http://img.b2bpic.net/free-photo/beautician-spa-beauty-salon-applies-cream-client-s-face-girl-lies-cosmetology-table_343596-4276.jpg", - ], - }, -}; + title: "Mesoestetic Tlemcen - Professional Facial Treatments", description: "Professional facial treatments and luxury skincare services in Tlemcen."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -