diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index fb69474..1b32161 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -63,7 +63,7 @@ export default function AboutPage() { }, ]} useInvertedBackground={true} - imageSrc="http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990729.jpg" + imageSrc="http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990729.jpg?_wi=2" imageAlt="team of professional plumbers workers" mediaAnimation="slide-up" metricsAnimation="slide-up" @@ -84,7 +84,7 @@ export default function AboutPage() { author: "24/7 Available", description: "Burst pipes, overflows, or other plumbing emergencies? We're here to help anytime, day or night with fast response times.", tags: ["Same-day", "Emergency"], - imageSrc: "http://img.b2bpic.net/free-photo/paramedic-giving-oxygen-injured-woman_107420-63771.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/paramedic-giving-oxygen-injured-woman_107420-63771.jpg?_wi=2", imageAlt: "emergency plumbing response technician", }, { @@ -93,7 +93,7 @@ export default function AboutPage() { author: "Expert Detection", description: "We detect and repair leaks before they become major problems. Save money and prevent water damage with our leak detection services.", tags: ["Detection", "Prevention"], - imageSrc: "http://img.b2bpic.net/free-photo/black-white-vintage-portrait-man-doing-housework-household-chores_23-2151448645.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/black-white-vintage-portrait-man-doing-housework-household-chores_23-2151448645.jpg?_wi=2", imageAlt: "plumber detecting leak detection service", }, { @@ -102,7 +102,7 @@ export default function AboutPage() { author: "Installation & Repair", description: "Installation, repair, and maintenance of water heaters. We work with all brands and types, including tankless systems for energy efficiency.", tags: ["Installation", "Energy-efficient"], - imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990730.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/male-plumber-working-fix-problems-client-s-house_23-2150990730.jpg?_wi=2", imageAlt: "water heater installation professional", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fa6ab..a1516bb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,45 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_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 { DM_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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Brian S Brown Plumbing & Heating | Local Plumber & HVAC", + description: "Trusted plumbing and heating services. Licensed, insured, 24/7 emergency service. Free estimates. Over 20 years serving the community.", + keywords: "plumber, plumbing repair, heating repair, emergency plumbing, water heater, drain cleaning, local plumber", + openGraph: { + title: "Brian S Brown Plumbing & Heating", + description: "Fast, honest, and reliable plumbing and heating services. Licensed & insured. 24/7 emergency service available.", + url: "https://briansbrown.com", + siteName: "Brian S Brown Plumbing & Heating", + type: "website", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +48,9 @@ export default function RootLayout({ return ( - + {children}