From 7f26c536a047aff42652f9f731b2f24deeb2a4d5 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 19:05:34 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++----------------------------------------- 1 file changed, 6 insertions(+), 49 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 358e2cd..adc9c6b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Purezza Glam Makeover - Best Beauty Salon in Kota | 5-Star Rated", description: "Kota's premium beauty salon offering nail art, eyelash extensions, hair treatments & skin facials. 5-star rated with 149+ reviews. Book now!", keywords: "beauty salon Kota, nail art Kota, eyelash extensions, bridal makeup, hair treatment, skin facial, best beauty parlour", metadataBase: new URL("https://purezzaglam.com"), - alternates: { - canonical: "https://purezzaglam.com" - }, - openGraph: { - title: "Purezza Glam Makeover - Premium Beauty Salon in Kota", description: "Discover premium beauty services at Kota's most trusted salon. 5-star rated, natural results, premium products.", type: "website", siteName: "Purezza Glam Makeover", images: [ - { - url: "http://img.b2bpic.net/free-photo/front-view-young-female-manicure-pink-t-shirt-with-black-gloves-black-mask-doing-manicure-blue_140725-24225.jpg", alt: "Purezza Glam Makeover Premium Beauty Services" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Purezza Glam Makeover - Best Beauty Salon in Kota", description: "5-star rated premium beauty services. Nail art, eyelash, hair & skin treatments.", images: ["http://img.b2bpic.net/free-photo/front-view-young-female-manicure-pink-t-shirt-with-black-gloves-black-mask-doing-manicure-blue_140725-24225.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Purezza Glam | Premium Beauty Salon in Kota", description: "5-Star Rated Premium Beauty Salon in Kota. Nail Art, Eyelash Extensions, Hair & Skin Treatments. Expert beauty services with premium products."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}