Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9521bda874 | |||
| 564b93480e | |||
| e40f2afe96 | |||
| a56b71dbc5 | |||
| e6c1bf1a22 |
@@ -1,70 +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 "./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: "Fall River Plumber | 5-Star Rated | Flat Rate Pricing",
|
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."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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: `
|
||||||
@@ -1432,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -83,8 +83,8 @@ export default function HomePage() {
|
|||||||
<div id="trust-badges" data-section="trust-badges">
|
<div id="trust-badges" data-section="trust-badges">
|
||||||
<SocialProofOne
|
<SocialProofOne
|
||||||
tag="Trust Badges"
|
tag="Trust Badges"
|
||||||
title="Why Homeowners Choose Fall River Plumbing"
|
title="Licensed, Insured & 5-Star Rated"
|
||||||
description="Industry-leading credentials and commitment to excellence"
|
description="Industry-leading credentials and commitment to excellence. Verified business with background checks, workmanship guarantee, and family-owned service excellence."
|
||||||
names={[
|
names={[
|
||||||
"5.0 Google Rating", "Verified Business", "Background Checked", "Workmanship Guarantee", "5+ Years in Business", "Family-Owned & Operated", "Flat Rate Pricing", "Licensed & Insured"]}
|
"5.0 Google Rating", "Verified Business", "Background Checked", "Workmanship Guarantee", "5+ Years in Business", "Family-Owned & Operated", "Flat Rate Pricing", "Licensed & Insured"]}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
|
|||||||
Reference in New Issue
Block a user