|
|
|
|
@@ -1,69 +1,17 @@
|
|
|
|
|
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 { 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 = {
|
|
|
|
|
title: "On Point Plumbing LLC | Fast Plumbing Repair & Installation in Henry County, Ohio",
|
|
|
|
|
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"],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
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."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1431,7 +1379,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|