Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e8effc53d2 | |||
| 240c3e75f7 | |||
| 71a8b290f1 | |||
| 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 - Local Plumber Services", description: "Professional plumbing services in Fall River. Family-owned, 5-star rated, flat rate pricing, guaranteed work."};
|
||||||
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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ export default function HomePage() {
|
|||||||
tag="Serving Fall River & Nearby Areas"
|
tag="Serving Fall River & Nearby Areas"
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "CALL NOW", href: "tel:+15085550123" },
|
{ text: "CALL NOW: (508) 555-0123", href: "tel:+15085550123" },
|
||||||
{ text: "GET FREE QUOTE", href: "/contact" },
|
{ text: "GET FREE QUOTE", href: "/contact" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
@@ -266,4 +266,4 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user