From 6a52ac1dce4e229c2b438e2d930bee79ff523b63 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 04:57:28 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 150df50..19123b6 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 { Open_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Bridal Makeup Artist in Saharanpur | The BrideBelle", description: "Professional bridal makeup artist in Saharanpur. HD makeup, airbrush, party makeup by Rahin. Book your wedding makeup consultation today. Call +91 84331 66030", keywords: "bridal makeup artist Saharanpur, HD bridal makeup, airbrush makeup Saharanpur, wedding makeup artist, party makeup, engagement makeup", metadataBase: new URL("https://thebridebelle.com"), - alternates: { - canonical: "https://thebridebelle.com"}, - openGraph: { - title: "The BrideBelle - Luxury Bridal Makeup in Saharanpur", description: "Professional HD and airbrush bridal makeup by Rahin. Creating flawless, long-lasting looks for your special day.", url: "https://thebridebelle.com", siteName: "The BrideBelle", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-applying-cosmetics-model_23-2148398679.jpg", alt: "The BrideBelle - Luxury Bridal Makeup"}, - ], - }, - twitter: { - card: "summary_large_image", title: "The BrideBelle - Bridal Makeup Artist", description: "Professional bridal makeup in Saharanpur. HD, airbrush, and party makeup.", images: ["http://img.b2bpic.net/free-photo/woman-applying-cosmetics-model_23-2148398679.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "The BrideBelle - Professional Bridal Makeup in Saharanpur", description: "Professional bridal makeup artist in Saharanpur. HD, Airbrush, and Party Makeup services by Rahin. Book luxury bridal makeup for your special day."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}