From f01fed7cc3fdaf76e3c4d2771d6a1df3f7d4f552 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 02:53:46 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 46 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 34 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 72a7224..4960596 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,28 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import { Open_Sans } from "next/font/google"; -import { Halant } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Jimmy's Haircuts | Premium Barbershop Haircuts & Grooming", description: "Expert fades, precision beard work, and classic hot towel shaves. Book your appointment at downtown's finest barbershop.", keywords: "barbershop, haircuts, beard trim, hot shave, downtown barber, men's grooming", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Jimmy's Haircuts | Premium Barbershop", description: "Expert grooming for the modern gentleman. Expert fades, precision beards, classic shaves.", type: "website", siteName: "Jimmy's Haircuts"}, - twitter: { - card: "summary_large_image", title: "Jimmy's Haircuts | Premium Barbershop", description: "Book your expert haircut at downtown's premier barbershop."}, -}; + title: "Jimmy's Haircuts", description: "Premium grooming for the modern gentleman"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +