From 2959117cfb3eb2ced27e91694ecb735aa3daedfe Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 22:41:48 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42a1f97..3abf2e2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Faircloth Plumbing & Heating | Local Plumbing Service", description: "Reliable plumbing repair with fair pricing. Quick response, honest service, quality repairs. Call today for leak repair, toilet service, and general plumbing.", keywords: "plumbing service, plumber, leak repair, toilet repair, local plumbing, residential plumbing, fair pricing", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Faircloth Plumbing & Heating | Reliable Local Service", description: "Honest plumbing repairs with fair pricing. Quick response guaranteed.", type: "website", siteName: "Faircloth Plumbing & Heating", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-woman-working-as-plumber_23-2150746370.jpg", alt: "Professional plumbing service"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Faircloth Plumbing & Heating", description: "Fast, reliable, fair-priced plumbing service", images: ["http://img.b2bpic.net/free-photo/side-view-woman-working-as-plumber_23-2150746370.jpg"], - }, -}; + title: "Faircloth Plumbing & Heating", description: "Reliable local plumbing services with fair pricing and quick response times."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}