From a2fb27563c79befed07724d159e15f3393c4ccd1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 14:02:07 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f621a46..94f13a1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,25 +5,14 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], + variable: "--font-manrope", subsets: ["latin"], }); export const metadata: Metadata = { - title: "M&T Plumbing - Trusted Local Plumbing Service in Kings Mountain, NC", - description: "Expert plumbing services in Kings Mountain, NC. 5.0 rated with 10 reviews. 24/7 emergency service. Call (704) 734-1792 for leak detection, drain cleaning, water heater, and more.", - keywords: "plumbing, Kings Mountain NC, leak repair, drain cleaning, water heater, plumber near me", - openGraph: { - title: "M&T Plumbing - Kings Mountain, NC", - description: "Trusted local plumbing service. Expert workmanship, fast response, professional service. 5.0 ★★★★★ (10 Reviews)", - type: "website", - siteName: "M&T Plumbing", - }, + title: "M&T Plumbing - Trusted Local Plumbing Service in Kings Mountain, NC", description: "Expert plumbing services in Kings Mountain, NC. 5.0 rated with 10 reviews. 24/7 emergency service. Call (704) 734-1792 for leak detection, drain cleaning, water heater, and more.", keywords: "plumbing, Kings Mountain NC, leak repair, drain cleaning, water heater, plumber near me", openGraph: { + title: "M&T Plumbing - Kings Mountain, NC", description: "Trusted local plumbing service. Expert workmanship, fast response, professional service. 5.0 ★★★★★ (10 Reviews)", type: "website", siteName: "M&T Plumbing"}, twitter: { - card: "summary_large_image", - title: "M&T Plumbing - Kings Mountain, NC", - description: "Expert plumbing service. Call (704) 734-1792. Open 24/7.", - }, + card: "summary_large_image", title: "M&T Plumbing - Kings Mountain, NC", description: "Expert plumbing service. Call (704) 734-1792. Open 24/7."}, robots: { index: true, follow: true, @@ -1412,4 +1401,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From b5cab113354769cb7229f6d8903b8246067352bb Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 14:02:08 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 130 ++++++++++------------------------------------- 1 file changed, 28 insertions(+), 102 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ccbe5ec..084b4a4 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -21,32 +21,28 @@ export default function HomePage() { const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "About", href: "/" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }, ], }, { - title: "Service Areas", - items: [ + title: "Service Areas", items: [ { label: "Kings Mountain, NC", href: "#" }, { label: "Residential Plumbing", href: "/services" }, { label: "Emergency Service", href: "tel:(704)734-1792" }, ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "(704) 734-1792", href: "tel:(704)734-1792" }, { label: "205 York Rd, Kings Mountain, NC 28086", href: "#" }, { label: "Open 24 Hours", href: "#" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, ], @@ -111,78 +107,48 @@ export default function HomePage() { ); -} \ No newline at end of file +} -- 2.49.1