diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 26612d9..b8d1685 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,21 @@ 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"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "24/7 Emergency Plumbers London | Barry's Plumbing Services", description: "24/7 emergency plumbing, heating, gas & HIU engineers in London. Fast response (30 mins), 5-star rated, Gas Safe certified. Call now for urgent repairs.", keywords: "emergency plumber london, 24/7 plumbing, boiler repair, gas engineer, drain unblocking, london plumber", metadataBase: new URL("https://barrysplumbing.com"), - alternates: { - canonical: "https://barrysplumbing.com"}, - openGraph: { - title: "24/7 Emergency Plumbers London", description: "Fast emergency plumbing response across London. Gas Safe certified engineers available 24/7. Call now for help.", url: "https://barrysplumbing.com", siteName: "Barry's Emergency Plumbing", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/plumber-repair-experienced-attentive-middleaged-man-examining-bottom-kitchen-sink_259150-58266.jpg", alt: "Emergency plumbing services"}, - ], - }, - twitter: { - card: "summary_large_image", title: "24/7 Emergency Plumbers in London", description: "Professional emergency plumbing. Fast response. Gas Safe certified. Available now.", images: ["http://img.b2bpic.net/free-photo/plumber-repair-experienced-attentive-middleaged-man-examining-bottom-kitchen-sink_259150-58266.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: "Barry's Emergency Plumbing", description: "24/7 Emergency Plumbers in London – Fast, Reliable, Local. Plumbing, Heating, Gas & HIU Engineers." }; export default function RootLayout({ - children, -}: Readonly<{ + children +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}