From c5d7c28769b54c56630149f2ce6b70a8185ecd81 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 13:18:47 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1413 +------------------------------------------- 1 file changed, 7 insertions(+), 1406 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 02f7ab0..b1b40d0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +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: "TheGodfather Barber Shop | Premium Barbering Services", description: "Experience expert barbering at TheGodfather. Premium haircuts, beard grooming, and hot shave services by master barbers. Book your appointment today.", keywords: "barbershop, barber, haircuts, beard grooming, shave, grooming, premium barber services", openGraph: { - title: "TheGodfather Barber Shop", description: "Premium Barbering Services - Expert Haircuts, Beard Grooming & Hot Shaves", type: "website", siteName: "TheGodfather Barber Shop", images: [ - { - url: "http://img.b2bpic.net/free-photo/barber-thinking-hairstyle-customer_23-2148298291.jpg", alt: "TheGodfather Barber Shop" - } - ] - }, - twitter: { - card: "summary_large_image", title: "TheGodfather Barber Shop", description: "Premium Barbering Services", images: ["http://img.b2bpic.net/free-photo/barber-thinking-hairstyle-customer_23-2148298291.jpg"] - } -}; + title: "TheGodfather Barber Shop", description: "Experience the art of classic barbering with precision, tradition, and expert craftsmanship."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -