Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c7dda4cca4 | |||
| 508d4b9177 | |||
| 9af14f5af6 | |||
| 8120422051 |
@@ -1,69 +1,17 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import { Nunito_Sans } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const nunitoSans = Nunito_Sans({
|
|
||||||
variable: "--font-nunito-sans",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "On Point Plumbing LLC | Fast Plumbing Repair & Installation in Henry County, Ohio",
|
title: "On Point Plumbing | Henry County's Trusted Local Plumber", description: "Fast, reliable plumbing repairs and installations. Same-day emergency service available. Fair pricing and honest service from Henry County's most trusted local plumber."};
|
||||||
description: "Trusted local plumber in Henry County, Ohio. Fast response, fair pricing, same-day service available. Call (419) 555-0147 for emergency plumbing repair.",
|
|
||||||
keywords: "plumber Henry County Ohio, plumber Napoleon Ohio, emergency plumber, drain cleaning, sewer line repair, sump pump installation",
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "On Point Plumbing LLC - Henry County's Trusted Local Plumber",
|
|
||||||
description: "Fast, reliable plumbing services with fair pricing and honest recommendations. Same-day service available.",
|
|
||||||
type: "website",
|
|
||||||
siteName: "On Point Plumbing LLC",
|
|
||||||
images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721539.jpg",
|
|
||||||
alt: "On Point Plumbing - Professional Local Plumber",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "On Point Plumbing LLC - Henry County Plumber",
|
|
||||||
description: "Fast, reliable plumbing repair and installation in Henry County, Ohio.",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721539.jpg"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1431,7 +1379,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -75,7 +75,7 @@ export default function HomePage() {
|
|||||||
showBlur={true}
|
showBlur={true}
|
||||||
showDimOverlay={true}
|
showDimOverlay={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Call Now (419) 555-0147", href: "https://tel:+14195550147" },
|
{ text: "Call Now - Available Today", href: "https://tel:+14195550147" },
|
||||||
{ text: "Request Service", href: "/contact" },
|
{ text: "Request Service", href: "/contact" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user