From 78f82032bb1f60d609cedfd50213275d3e8c37f2 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 16:34:11 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1411 +------------------------------------------- 1 file changed, 11 insertions(+), 1400 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 70d3e7e..7ffd6e0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1415 +1,27 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; -import { Inter } 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 libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], +const geistSans = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Bear Hairstylist | Premium Barbershop Services", description: "Expert barbering and grooming services. Professional haircuts, beard grooming, and hot towel shaves. Book your appointment at Bear Hairstylist today.", keywords: "barbershop, haircut, beard grooming, barber services, professional grooming, shave", openGraph: { - title: "Bear Hairstylist | Premium Barbershop", description: "Experience precision grooming and timeless style at Bear Hairstylist. Expert barbers delivering excellence.", siteName: "Bear Hairstylist", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/customer-talking-phone-barbershop_23-2147737026.jpg", alt: "professional barber cutting hair mirror"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Bear Hairstylist | Premium Barbershop", description: "Expert barbering services - haircuts, beard grooming, and classic shaves.", images: ["http://img.b2bpic.net/free-photo/customer-talking-phone-barbershop_23-2147737026.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Bear Hairstylist | Professional Barbering", description: "Expert barbering services with precision grooming and timeless style"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -