import type { Metadata } from "next"; import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "The Barbershop Manchester | Premium Cuts & Grooming", description: "Manchester's premier barbershop trusted by football legends and professionals. Expert barbers, premium service, and championship quality cuts.", keywords: "barbershop manchester, barber, haircut, beard grooming, professional barber, football, sports", metadataBase: new URL("https://thebarbershop.com"), alternates: { canonical: "https://thebarbershop.com" }, openGraph: { title: "The Barbershop Manchester | Premium Cuts & Grooming", description: "Manchester's premier barbershop trusted by football legends and professionals.", url: "https://thebarbershop.com", siteName: "The Barbershop Manchester", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/professional-barber-working-with-client-hairdressing-salon-styling-beard-with-comb_613910-5069.jpg", alt: "The Barbershop Manchester interior" } ] }, twitter: { card: "summary_large_image", title: "The Barbershop Manchester | Premium Cuts & Grooming", description: "Manchester's premier barbershop trusted by football legends and professionals.", images: ["https://img.b2bpic.net/free-photo/professional-barber-working-with-client-hairdressing-salon-styling-beard-with-comb_613910-5069.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}