From 23ef903cbb87ba6877a793bb8965c5c99ac69fff Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 03:02:34 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 31d7ada..c198265 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -122,7 +122,7 @@ export default function AboutPage() { role: "Homeowner", company: "Residential Customer", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-family-kitchen-decorated-christmas_93675-133749.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-family-kitchen-decorated-christmas_93675-133749.jpg?_wi=2", imageAlt: "happy homeowner smiling at home portrait", }, { @@ -131,7 +131,7 @@ export default function AboutPage() { role: "Property Manager", company: "Commercial Building", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/research-agency-employee-sitting-office-while-using-work-computer-review-startup-project-marketing-strategy-sales-department-team-leader-developing-financial-plan-order-stabilize-budget_482257-38918.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/research-agency-employee-sitting-office-while-using-work-computer-review-startup-project-marketing-strategy-sales-department-team-leader-developing-financial-plan-order-stabilize-budget_482257-38918.jpg?_wi=2", imageAlt: "portrait business owner at office desk", }, { @@ -140,7 +140,7 @@ export default function AboutPage() { role: "Homeowner", company: "Residential Customer", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-woman-organizing-live-shop_23-2149947467.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-woman-organizing-live-shop_23-2149947467.jpg?_wi=2", imageAlt: "young homeowner portrait natural light", }, ]} -- 2.49.1 From b86200778522e0098a63fb0f18978c0f7992fc0a Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 03:02:34 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5aaf8c4..e9ab053 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito } 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 { Nunito } 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 nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "In Need of a Plumber LLC - 24/7 Emergency Plumbing Service", + description: "Fast, reliable plumbing services available 24/7. Licensed, insured plumbers ready to handle emergencies, repairs, and installations. Call (555) 123-4567 today.", + keywords: "plumber near me, emergency plumber, 24/7 plumbing, leak repair, drain cleaning, water heater, residential plumbing, licensed plumber", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "In Need of a Plumber LLC - Professional Plumbing Service", + description: "24/7 emergency plumbing services. Licensed and insured. Fast response, professional results.", + type: "website", + siteName: "In Need of a Plumber LLC", + images: [ + { + url: "http://img.b2bpic.net/free-photo/plumber-doing-surprise-gesture_1368-6311.jpg", + alt: "Professional plumbing service", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "In Need of a Plumber LLC - 24/7 Service", + description: "Professional plumbing services available anytime. Call now.", + images: ["http://img.b2bpic.net/free-photo/plumber-doing-surprise-gesture_1368-6311.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}