From da175408f8d4531c8d3ae1f94cc6bc2fcf834159 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 19:00:21 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1415 +------------------------------------------- 1 file changed, 6 insertions(+), 1409 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c638a4d..c9b4df0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Black & Grey Salon - Premium Haircuts & Grooming in Sharjah", description: "Premium barbershop specializing in fades, line-ups, beard trims, and modern haircuts. Book your appointment online at Black & Grey Salon in Sharjah, UAE.", keywords: "barbershop, haircuts, fades, grooming, Sharjah, premium salon", metadataBase: new URL("https://blackgreysalon.com"), - openGraph: { - title: "Black & Grey Salon - Premium Grooming Services", description: "Experience excellence in barbering at Black & Grey Salon. Professional fades, cuts, and grooming.", url: "https://blackgreysalon.com", siteName: "Black & Grey Salon", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/high-angle-arrangement-with-scissors_23-2149007425.jpg", alt: "Black & Grey Salon Premium Interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Black & Grey Salon - Premium Haircuts", description: "Book your haircut at Black & Grey Salon - Expert fades and grooming.", images: ["http://img.b2bpic.net/free-photo/high-angle-arrangement-with-scissors_23-2149007425.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Black & Grey Salon", description: "Premium Haircuts & Grooming Excellence"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -