import type { Metadata } from "next"; import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "Nottingham Premier Roofing | Expert Repairs & Installation Services", description: "Professional roofing repairs, new installations, flat roofs & 24/7 emergency call-outs. Licensed, insured, 15+ years experience. Get your free quote today.", keywords: "roofing, roof repair, roof installation, flat roofs, emergency roofing, Nottingham, roofer, licensed roofer", robots: { index: true, follow: true, }, openGraph: { title: "Nottingham Premier Roofing - Expert Roof Repairs & Installations", description: "Professional roofing solutions in Nottingham. Repairs, installations, and emergency call-outs with 15+ years of trusted expertise.", type: "website", siteName: "Nottingham Premier Roofing", images: [ { url: "http://img.b2bpic.net/free-photo/modern-house-architecture-navy-roof-wooden-soffit-blue-sky_626616-509.jpg", alt: "Professional roofing installation work", }, ], }, twitter: { card: "summary_large_image", title: "Nottingham Premier Roofing", description: "Expert roof repairs and installations with 24/7 emergency response.", images: ["http://img.b2bpic.net/free-photo/modern-house-architecture-navy-roof-wooden-soffit-blue-sky_626616-509.jpg"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}