From 38f5d7e5c3236a6e811fa53c3afab07d4d2c633a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 12:43:33 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 52 +++++----------------------------------------- 1 file changed, 5 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f81acee..67bbd06 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,16 @@ 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"], -}); export const metadata: Metadata = { - title: "The Prince Barbershop Windsor | Professional Men's Haircuts & Grooming", description: "Windsor's trusted barbershop offering professional haircuts, fades, beard trims & grooming. Expert barbers, 4.9⭐ rating. Book online or walk-in today.", keywords: "Windsor barbershop, men's haircuts Windsor, professional barber, beard trim, fades Windsor, grooming services", metadataBase: new URL("https://theprincebarbershop.ca"), - alternates: { - canonical: "https://theprincebarbershop.ca"}, - openGraph: { - title: "The Prince Barbershop Windsor | Professional Men's Grooming", description: "Expert barbers delivering precision haircuts, sharp fades, and beard grooming in downtown Windsor. Trusted by 197+ customers. 4.9⭐ rating.", url: "https://theprincebarbershop.ca", siteName: "The Prince Barbershop", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/barber-preparing-client-trimming-hair-salon_23-2148181952.jpg", alt: "The Prince Barbershop professional barber service"}, - ], - }, - twitter: { - card: "summary_large_image", title: "The Prince Barbershop Windsor | Professional Men's Grooming", description: "Expert barbers delivering precision haircuts and sharp fades. 4.9⭐ from 197+ customers.", images: ["http://img.b2bpic.net/free-photo/barber-preparing-client-trimming-hair-salon_23-2148181952.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "The Prince Barbershop | Professional Haircuts & Beard Grooming in Windsor", description: "Expert barber services in Windsor, ON. Professional haircuts, fades, beard trims, and grooming. Award-winning barbers with 15+ years experience."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}