Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 06:35:20 +00:00
2 changed files with 10 additions and 59 deletions

View File

@@ -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>
);
}
}

View File

@@ -86,7 +86,7 @@ export default function HomePage() {
tagIcon={Star}
background={{ variant: "plain" }}
buttons={[
{ text: "Call Now 085 873 2792", href: "tel:0858732792" },
{ text: "Get Emergency Service Now", href: "tel:0858732792" },
{ text: "Request a Free Quote", href: "#contact" },
]}
imageSrc="http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990698.jpg"
@@ -221,4 +221,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}