import type { Metadata } from "next"; import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Oxford Heating & Plumbing | Emergency 24/7 | SB Services", description: "Oxford's trusted 24/7 emergency plumbing & heating service. Boiler repairs, installations, burst pipes. 4.9★ rated. Call now for same-day emergency response.", keywords: "emergency plumber Oxford, heating engineer Oxford, boiler repair, plumbing services, 24/7 emergency service, Oxford plumber, central heating", metadataBase: new URL("https://www.sbheatingplumbing.co.uk"), alternates: { canonical: "https://www.sbheatingplumbing.co.uk" }, openGraph: { title: "Oxford's Most Trusted Heating & Plumbing Experts | SB Services", description: "24/7 emergency plumbing & heating service in Oxford. Boiler repairs, installations, leak fixes. Rated 4.9★ by 65+ customers.", url: "https://www.sbheatingplumbing.co.uk", siteName: "SB Heating & Plumbing Services", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/full-shot-tired-man-kitchen-floor_23-2148563379.jpg", alt: "Professional plumbing and heating service" } ] }, twitter: { card: "summary_large_image", title: "Emergency Plumbing & Heating in Oxford | 24/7 Service", description: "Trusted local plumbers & heating engineers. Emergency response, boiler service, leak repair. Call now.", images: ["http://img.b2bpic.net/free-photo/full-shot-tired-man-kitchen-floor_23-2148563379.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}