From 87a3b1a9a0f8865d1bf318508c15b7ec802b4d4a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 08:35:05 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 085a24d..51b9d20 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Classics Barbershop - Premium Grooming & Expert Barbers", description: "Experience timeless grooming excellence at Classics Barbershop. Expert barbers, traditional techniques, and premium services for the distinguished gentleman.", keywords: "barbershop, haircut, beard grooming, shaving, barber services, men grooming, professional haircut", metadataBase: new URL("https://classicsbarbershop.com"), - alternates: { - canonical: "https://classicsbarbershop.com"}, - openGraph: { - title: "Classics Barbershop - Premium Grooming", description: "Expert barbering with traditional techniques and modern styling.", url: "https://classicsbarbershop.com", siteName: "Classics Barbershop", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/hairdresser-cutting-man-s-hair-barber-shop_23-2149186471.jpg", alt: "Classics Barbershop Interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Classics Barbershop - Premium Grooming", description: "Expert barbering with traditional techniques and modern styling.", images: ["http://img.b2bpic.net/free-photo/hairdresser-cutting-man-s-hair-barber-shop_23-2149186471.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Classics Barbershop", description: "Premium barbering services with timeless excellence"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}