|
|
|
|
@@ -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 (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1430,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|