From ecbaeff975ac66f6f337f8388a4b6b4af977d947 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 23:41:18 +0000 Subject: [PATCH 1/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 3e1b862..d8a6659 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -76,7 +76,7 @@ export default function ContactPage() { tagAnimation="slide-up" background={{ variant: "radial-gradient" }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/wrench-tools_23-2147773408.jpg" + imageSrc="http://img.b2bpic.net/free-photo/wrench-tools_23-2147773408.jpg?_wi=2" imageAlt="Professional plumbing tools and fittings" mediaAnimation="slide-up" mediaPosition="right" -- 2.49.1 From 483380d83cb08e84264db0808b0d535412952ba6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 23:41:18 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 34 ++++++++++++++++++++++++++-------- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..bf4b300 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,40 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito_Sans } 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_Sans } 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 nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Carmel Valley Plumbing - Local Plumbing Services", + description: "Fast, honest plumbing service for Carmel Valley homeowners. Repairs, leaks, installations, and 24/7 emergency service.", + keywords: "plumbing, plumber, Carmel Valley, San Diego, leak repair, water heater, emergency plumbing", + openGraph: { + title: "Carmel Valley Plumbing - Reliable Local Plumbing Done Right", + description: "Professional plumbing services in Carmel Valley, CA. Fast response, honest pricing, trusted experts.", + siteName: "Carmel Valley Plumbing", + type: "website", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +43,9 @@ export default function RootLayout({ return ( - + {children}