Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 14:04:54 +00:00
2 changed files with 11 additions and 62 deletions

View File

@@ -1,70 +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";
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: "Fall River Plumber | 5-Star Rated | Flat Rate Pricing",
description: "Trusted local plumber in Fall River. Family-owned, 5-star rated. Flat rate pricing, guaranteed work. Emergency service available.",
keywords: "plumber Fall River, emergency plumber, water heater repair, drain cleaning, local plumber",
metadataBase: new URL("https://fallriverplumbing.com"),
alternates: {
canonical: "https://fallriverplumbing.com",
},
openGraph: {
title: "Fall River Plumbing - 5-Star Rated Local Plumber",
description: "Professional plumbing services in Fall River. Flat rate pricing, guaranteed work, family-owned.",
url: "https://fallriverplumbing.com",
siteName: "Fall River Plumbing",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990698.jpg",
alt: "Professional plumber at work",
},
],
},
twitter: {
card: "summary_large_image",
title: "Fall River Plumbing - Trusted Local Expert",
description: "5-star rated plumbing services. Flat rate pricing. Call now: (508) 555-0123",
images: [
"http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990698.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
title: "Fall River Plumbing - Licensed, Insured & 5-Star Rated", description: "Expert plumbing services in Fall River. Licensed, insured, and family-owned with guaranteed workmanship and flat rate pricing."};
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: `
@@ -1432,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -83,8 +83,8 @@ export default function HomePage() {
<div id="trust-badges" data-section="trust-badges">
<SocialProofOne
tag="Trust Badges"
title="Why Homeowners Choose Fall River Plumbing"
description="Industry-leading credentials and commitment to excellence"
title="Licensed, Insured & 5-Star Rated"
description="Industry-leading credentials and commitment to excellence. Verified business with background checks, workmanship guarantee, and family-owned service excellence."
names={[
"5.0 Google Rating", "Verified Business", "Background Checked", "Workmanship Guarantee", "5+ Years in Business", "Family-Owned & Operated", "Flat Rate Pricing", "Licensed & Insured"]}
textboxLayout="default"
@@ -182,7 +182,7 @@ export default function HomePage() {
id: "3", value: "Guaranteed", title: "Quality Workmanship", description: "Every job backed by our workmanship guarantee", imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990705.jpg?_wi=2"},
{
id: "4", value: "Fast Response", title: "Emergency Service", description: "Quick response times for urgent plumbing needs", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-showers-stone-tile-premium-spa_169016-68908.jpg?_wi=2"},
]}
]}
/>
</div>
@@ -266,4 +266,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}