Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 21:27:54 +00:00
2 changed files with 8 additions and 43 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Hazen Plumbing LLC | 24/7 Emergency Plumbing Satanta, KS", description: "Professional plumbing services in Satanta, KS. 24/7 emergency response, affordable rates, and local expertise. Call now for same-day service!", keywords: "plumbing services, emergency plumbing, Satanta KS, pipe repair, water heater, local plumber", metadataBase: new URL("https://hazenplumbing.com"),
alternates: {
canonical: "https://hazenplumbing.com"
},
openGraph: {
title: "Hazen Plumbing LLC - Trusted Local Plumber", description: "24/7 emergency plumbing services in Satanta, KS. Fast response, affordable rates, professional expertise.", url: "https://hazenplumbing.com", siteName: "Hazen Plumbing LLC", images: [
{
url: "http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990725.jpg", alt: "Professional plumbing services"
}
],
type: "website"
},
twitter: {
card: "summary_large_image", title: "Hazen Plumbing LLC - Your Local Plumber", description: "24/7 emergency plumbing. Fast response. Fair pricing. Trusted since day one.", images: ["http://img.b2bpic.net/free-photo/female-plumber-working-fix-problems-client-s-house_23-2150990725.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Hazen Plumbing LLC | Emergency Plumbing Services in Satanta, KS", description: "24/7 emergency plumbing services in Satanta, KS. Fast, reliable, and affordable. Call (620) 555-0147 for immediate assistance."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -203,8 +203,8 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCenter
tag="Contact Us"
title="Get Your Plumbing Fixed Today"
description="Call now for immediate assistance or fill out the form and we'll contact you within the hour. Available 24/7 for emergencies."
title="Call Now: (620) 555-0147"
description="For immediate assistance, call the number above. Or fill out the form below and we'll contact you within the hour. Available 24/7 for emergencies."
tagIcon={Phone}
tagAnimation="slide-up"
background={{ variant: "radial-gradient" }}