From a12154311c2694ca95583ce51b186a36d27fcaa1 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 06:35:15 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 65 ++++++---------------------------------------- 1 file changed, 8 insertions(+), 57 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7f4ab16..39fe5e5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,68 +1,20 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", - subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Heatview Plumbing & Heating | Local Plumber 4.7★ Rated", - description: "Trusted local plumbing and heating services. Emergency callouts, boiler replacement, bathroom renovations. 24/7 available. Fair pricing. Call 085 873 2792 today.", - keywords: "plumber near me, emergency plumbing, boiler replacement, heating repair, bathroom renovation, local plumber, 24/7 plumbing service", - metadataBase: new URL("https://heatview-plumbing.co.uk"), - alternates: { - canonical: "https://heatview-plumbing.co.uk", - }, - openGraph: { - title: "Heatview Plumbing & Heating | Trusted Local Service", - description: "Emergency plumbing, boiler replacement, heating repairs. Rated 4.7★. Fast response. Fair pricing. Call now.", - url: "https://heatview-plumbing.co.uk", - siteName: "Heatview Plumbing & Heating", - type: "website", - images: [ - { - url: "https://heatview-plumbing.co.uk/og-image.jpg", - alt: "Heatview Plumbing & Heating Services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Heatview Plumbing & Heating", - description: "Your trusted local plumber for emergency service, boiler replacement, and heating repairs.", - images: ["https://heatview-plumbing.co.uk/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Heatview - Plumbing & Heating Services", description: "Professional plumbing and heating services in your local area. Emergency callouts, boiler replacement, bathroom renovations, and general plumbing."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}