Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-03 22:11:59 +00:00
2 changed files with 15 additions and 52 deletions

View File

@@ -1,62 +1,20 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Trusted Heating & Plumbing Services Cork | 4.8★ Rated",
description: "Professional boiler replacement, heating systems & emergency plumbing services in Cork. Fully qualified, insured, 4.8★ Google rated. Free quotes available.",
keywords: "plumber Cork, heating contractor Cork, boiler replacement Cork, boiler servicing Cork, emergency plumber Cork, heating installation",
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Trusted Heating & Plumbing Services in Cork",
description: "Professional heating and plumbing solutions for Cork homeowners. 4.8★ Google rated. Over 10 years experience. Free quotes.",
type: "website",
siteName: "Darren O'Callaghan Heating & Plumbing",
images: [
{
url: "http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg",
alt: "Professional heating and plumbing technician",
},
],
},
twitter: {
card: "summary_large_image",
title: "Trusted Heating & Plumbing Services Cork",
description: "Professional boiler replacement, heating systems & plumbing services. 4.8★ Google rated.",
images: ["http://img.b2bpic.net/free-photo/manufacturer-teaching-new-employee-how-shape-wooden-bowl-disc-sander_482257-99053.jpg"],
},
};
title: "Darren O'Callaghan | Trusted Heating & Plumbing Services in Cork", description: "Professional boiler replacements, heating systems & plumbing services with 4.8★ Google reviews. Local, reliable, and fully qualified technicians serving Cork homeowners for over a decade."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1424,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -66,6 +66,12 @@ export default function HomePage() {
imageAlt="Professional heating and plumbing technician at work"
imagePosition="right"
mediaAnimation="slide-up"
avatars={[
{ src: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=1", alt: "Martin Lynch" },
{ src: "http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=2", alt: "Robert O'Shea" },
{ src: "http://img.b2bpic.net/free-photo/smiling-beautiful-middle-aged-business-woman_1262-3085.jpg?_wi=1", alt: "Cara Dillon" },
]}
avatarText="4.8★ from 19 reviews"
buttons={[
{ text: "Call Now", href: "tel:+353212345678" },
{ text: "Request Free Quote", href: "/contact" },
@@ -239,4 +245,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}