diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8ba31f9..dd1e28d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Libre_Baskerville } 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 libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", - subsets: ["latin"], - weight: ["400", "700"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Big Brother Hair & Beauty Salon - Paharganj, Delhi | 4.7★", - description: "Premium hair salon in Paharganj, Delhi. Haircuts, bridal makeup, hair coloring & grooming. 754+ happy customers. Book now: 8929324762", - keywords: "hair salon Paharganj, best salon near me, haircut Delhi, bridal makeup Paharganj, men's grooming, beauty salon", - metadataBase: new URL("https://bigbrothersalon.com"), - alternates: { - canonical: "https://bigbrothersalon.com", - }, - openGraph: { - title: "Big Brother Hair & Beauty Salon - Premium Services", - description: "Professional salon in Paharganj, Delhi with 4.7★ rating. Haircuts, bridal makeup, hair coloring. Call 8929324762", - url: "https://bigbrothersalon.com", - siteName: "Big Brother Hair & Beauty Salon", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/blonde-woman-with-mobile-phone-getting-her-hair-done_23-2148108775.jpg", - alt: "Big Brother Salon Interior", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Big Brother Hair & Beauty Salon", - description: "Premium hair & beauty salon in Paharganj, Delhi. 4.7★ rated by 754+ customers.", - images: ["http://img.b2bpic.net/free-photo/blonde-woman-with-mobile-phone-getting-her-hair-done_23-2148108775.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Big Brother Hair & Beauty Salon | Premium Services in Paharganj, Delhi", description: "Premier hair and beauty salon in Paharganj, Delhi. Expert stylists, premium products, and exceptional service. Haircuts, bridal makeup, coloring, and grooming. Book now!"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -