From dd022cb2f320a20015652bd043a3d906fa23c767 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 14:18:15 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index a76cb6f..0762b97 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -91,7 +91,7 @@ export default function AboutPage() { "We consistently deliver quality products and responsive service that contractors can depend on, project after project.", media: { imageSrc: - "http://img.b2bpic.net/free-photo/male-hands-with-wrench-turning-off-valves_169016-53780.jpg", + "http://img.b2bpic.net/free-photo/male-hands-with-wrench-turning-off-valves_169016-53780.jpg?_wi=6", imageAlt: "Professional plumbing reliability", }, items: [ @@ -135,7 +135,7 @@ export default function AboutPage() { "Our team brings years of industry knowledge to help you find the perfect solution for every plumbing challenge.", media: { imageSrc: - "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-55595.jpg", + "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-55595.jpg?_wi=3", imageAlt: "Expert plumbing knowledge", }, items: [ -- 2.49.1 From 09a5f95035cee57ac360d155f2f1d1329e489038 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 14:18:15 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..3fdbf12 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Lato } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const lato = Lato({ variable: "--font-lato", @@ -20,6 +24,32 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "Wilson Plumbing Supply - Plumbing Contractor Supplies Troy MO", + description: "Quality plumbing supplies for contractors and plumbers in Troy, Missouri. Brand-name products, competitive pricing, and trusted service since 2006.", + keywords: "plumbing supply Troy MO, plumbing wholesaler Missouri, contractor plumbing supplies, pipes fittings valves, professional plumbing materials", + metadataBase: new URL("https://wilsonplumbingsupply.com"), + alternates: { + canonical: "https://wilsonplumbingsupply.com", + }, + openGraph: { + title: "Wilson Plumbing Supply - Your Trusted Plumbing Partner", + description: "Professional plumbing supplies for contractors. Quality brands, competitive pricing, convenient location in Troy, MO.", + url: "https://wilsonplumbingsupply.com", + siteName: "Wilson Plumbing Supply", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Wilson Plumbing Supply - Plumbing Contractor Supplies", + description: "Quality plumbing supplies for professionals. Trusted since 2006.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +58,9 @@ export default function RootLayout({ return ( - + {children}