Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4862ffc774 | |||
| a12154311c | |||
| 221a2391fc | |||
| f1c54d5d19 | |||
| f95e6bc669 |
@@ -1,68 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Libre_Baskerville } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "@/styles/globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const libreBaskerville = Libre_Baskerville({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-libre-baskerville",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["400", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Heatview Plumbing & Heating | Local Plumber 4.7★ Rated",
|
title: "Heatview - Plumbing & Heating Services", description: "Professional plumbing and heating services in your local area. Emergency callouts, boiler replacement, bathroom renovations, and general plumbing."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1430,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -86,7 +86,7 @@ export default function HomePage() {
|
|||||||
tagIcon={Star}
|
tagIcon={Star}
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
buttons={[
|
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" },
|
{ 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"
|
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>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user