From 46ac626b9a023f114d960f0b46ee9523b38f3dda Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 19:18:09 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++--------------------------------------- 1 file changed, 8 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 63db0be..e55aa39 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,19 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +import type { Metadata } from 'next'; +import './globals.css'; export const metadata: Metadata = { - title: "Brigita Vather Beauty | Premium Salon in Westminster, London", description: "Luxury beauty salon in Westminster offering facials, massages, manicures, microneedling & eyelash treatments. Expert care in a serene setting. Book your appointment today.", keywords: "beauty salon Westminster, facials London, manicures, spa treatments, skincare, microneedling, eyelash extensions", metadataBase: new URL("https://brigita-vather-beauty.com"), - alternates: { - canonical: "https://brigita-vather-beauty.com"}, - openGraph: { - title: "Brigita Vather Beauty | Premium Beauty & Wellness Salon", description: "Experience professional beauty and wellness treatments at our luxury salon in Westminster, London. Expert facials, massages, nails, and skincare services.", url: "https://brigita-vather-beauty.com", siteName: "Brigita Vather Beauty", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/spa-equipments-with-soap-cotton-flower_23-2147844979.jpg", alt: "Brigita Vather Beauty Salon"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Brigita Vather Beauty | Westminster Salon", description: "Discover luxury beauty treatments at Brigita Vather. Premium facials, massages, nails & skincare in a serene Westminster setting.", images: ["http://img.b2bpic.net/free-photo/spa-equipments-with-soap-cotton-flower_23-2147844979.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: 'Brigita Vather Beauty | Premium Salon & Wellness', + description: 'Professional beauty and wellness treatments in Westminster, London. Expert facials, massages, nail care, and advanced skincare services.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}