From bdc812230d858e10061822cc4bd7bd6024f013c2 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 05:40:42 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 57 ++++++++++++---------------------------------- 1 file changed, 15 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a9fe762..cfc81c2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "NYC Quality Plumbing - 24/7 Emergency Plumbing Services", - description: "Fast, reliable 24/7 emergency plumbing services in New York City. Licensed & insured plumbers. Leak detection, drain cleaning, water heaters & more.", - keywords: "plumber NYC, emergency plumbing, 24 hour plumber, leak detection, drain cleaning", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "NYC Quality Plumbing - Your Trusted Emergency Plumber", - description: "Available 24/7 for emergency plumbing repairs, leak detection, and drain cleaning throughout New York City.", - siteName: "NYC Quality Plumbing", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721539.jpg", - alt: "Professional plumbing service in NYC", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "NYC Quality Plumbing - 24/7 Emergency Service", - description: "Call (332) 222-0135 for trusted plumbing services in New York City.", - images: ["http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721539.jpg"], - }, -}; + title: "NYC Quality Plumbing | Emergency Services 24/7", description: "Fast, reliable plumbing services across New York City. Licensed, experienced, and available anytime for emergencies, repairs, and installations."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +