From 209b232d7811d237dee91a3f652c8617f505f649 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 11:48:29 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 +------------------------------------------- 1 file changed, 11 insertions(+), 1408 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4b3d107..ff602f7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Golden Glow Beauty Parlour & Makeup Academy - Kharadi, Pune", description: "Professional beauty salon and makeup academy in Kharadi. Trusted by 14+ clients with 4.9-star rating. Expert bridal makeup, hair services, and beauty training courses.", keywords: "beauty parlour Kharadi, makeup academy Pune, bridal makeup, salon services, beauty courses", metadataBase: new URL("https://goldenglow-beauty.com"), - alternates: { - canonical: "https://goldenglow-beauty.com"}, - openGraph: { - title: "Golden Glow Beauty Parlour & Makeup Academy", description: "Premium beauty services and professional makeup training in Kharadi, Pune", url: "https://goldenglow-beauty.com", siteName: "Golden Glow Beauty", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-getting-her-hair-done-japanese-hairdressers_23-2149395787.jpg", alt: "Golden Glow Beauty Salon"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Golden Glow Beauty Parlour & Academy", description: "Trusted beauty services and makeup training in Kharadi", images: ["http://img.b2bpic.net/free-photo/woman-getting-her-hair-done-japanese-hairdressers_23-2149395787.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Golden Glow Beauty Salon & Makeup Academy", description: "Premium Beauty Salon & Makeup Academy in Kharadi. Professional beauty services and certified makeup courses."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -