From c91c0feda78e08804c45ae0a91a6c3f3659d9835 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 21:33:39 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1417 +------------------------------------------- 1 file changed, 11 insertions(+), 1406 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fabc1a3..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Barber 88 - Premium Barbershop Services", description: "Experience premium barbershop services at Barber 88. Expert haircuts, traditional shaves, and professional grooming with 25 years of excellence.", keywords: "barbershop, haircut, shaving, beard grooming, professional barber, premium grooming", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Barber 88 - Premium Barbershop Services", description: "Experience premium barbershop services with 25 years of expertise and excellence.", type: "website", siteName: "Barber 88", images: [ - { - url: "http://img.b2bpic.net/free-photo/crop-barber-holding-mousse-client_23-2147778804.jpg", alt: "Barber 88 Professional Barbershop"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Barber 88 - Premium Barbershop", description: "Expert barbershop services with 25 years of tradition and precision.", images: [ - "http://img.b2bpic.net/free-photo/crop-barber-holding-mousse-client_23-2147778804.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -