diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index e6aae08..548d92a 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -77,7 +77,7 @@ export default function ContactPage() { ]} buttonAnimation="slide-up" layoutOrder="default" - imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-car-mechanic-auto-repair-shop-looking-camera_637285-7794.jpg" + imageSrc="http://img.b2bpic.net/free-photo/portrait-happy-car-mechanic-auto-repair-shop-looking-camera_637285-7794.jpg?_wi=2" imageAlt="Professional plumber ready to help" mediaAnimation="opacity" frameStyle="card" diff --git a/src/app/emergency/page.tsx b/src/app/emergency/page.tsx index 1e17ce6..b8ab8ca 100644 --- a/src/app/emergency/page.tsx +++ b/src/app/emergency/page.tsx @@ -50,7 +50,7 @@ const EmergencyPage = () => { ]} buttonAnimation="slide-up" layoutOrder="default" - imageSrc="http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg" + imageSrc="http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg?_wi=5" imageAlt="Emergency plumbing response" mediaAnimation="opacity" frameStyle="card" @@ -98,7 +98,7 @@ const EmergencyPage = () => { name: "Burst Pipes", price: "Immediate Response", variant: "Quick Fix", - imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg?_wi=6", imageAlt: "Burst pipe emergency", }, { @@ -106,7 +106,7 @@ const EmergencyPage = () => { name: "Water Leaks", price: "Fast Detection", variant: "Professional Repair", - imageSrc: "http://img.b2bpic.net/free-photo/carpenter-process-professional-tool-precision-drilling-wood_169016-52220.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/carpenter-process-professional-tool-precision-drilling-wood_169016-52220.jpg?_wi=3", imageAlt: "Water leak repair", }, { @@ -114,7 +114,7 @@ const EmergencyPage = () => { name: "Water Line Breaks", price: "Expert Installation", variant: "Durable Solution", - imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721545.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/plumbing-professional-doing-his-job_23-2150721545.jpg?_wi=4", imageAlt: "Water line break repair", }, { @@ -122,7 +122,7 @@ const EmergencyPage = () => { name: "Overflowing Fixtures", price: "Rapid Response", variant: "Emergency Service", - imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-24827.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/man-fixing-kitchen-sink_53876-24827.jpg?_wi=4", imageAlt: "Overflowing fixture repair", }, { @@ -130,7 +130,7 @@ const EmergencyPage = () => { name: "Clogged Drains", price: "Swift Unclogging", variant: "Professional Equipment", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-cleaning-his-home_23-2148112854.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-cleaning-his-home_23-2148112854.jpg?_wi=3", imageAlt: "Clogged drain repair", }, { @@ -138,7 +138,7 @@ const EmergencyPage = () => { name: "Urgent Repairs", price: "24/7 Availability", variant: "Always Ready", - imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/full-shot-man-working-as-plumber_23-2150746297.jpg?_wi=7", imageAlt: "Urgent plumbing repair", }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c1f48a0..8558593 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,32 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_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 { Public_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 publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "24/7 Plumbing Services | Georgia Plumbing Solutions Co.", + description: "Professional plumbing services in Georgia. 24/7 emergency repairs, water line service, leak detection, and more. 4.6-star rated with 70+ verified reviews. Licensed, insured, fast response.", +}; export default function RootLayout({ children, @@ -31,7 +36,9 @@ export default function RootLayout({ return ( - + {children}